test_include1.cpp 899 B

123456789101112131415161718192021222324
  1. // (C) Copyright Andy Tompkins 2009. Permission to copy, use, modify, sell and
  2. // distribute this software is granted provided this copyright notice appears
  3. // in all copies. This software is provided "as is" without express or implied
  4. // warranty, and with no claim as to its suitability for any purpose.
  5. // Distributed under the Boost Software License, Version 1.0. (See
  6. // accompanying file LICENSE_1_0.txt or copy at
  7. // https://www.boost.org/LICENSE_1_0.txt)
  8. // libs/uuid/test/test_include1.cpp -------------------------------//
  9. #include <boost/uuid/uuid.hpp>
  10. #include <boost/uuid/uuid_io.hpp>
  11. #include <boost/uuid/uuid_serialize.hpp>
  12. #include <boost/uuid/uuid_generators.hpp>
  13. #include <boost/uuid/nil_generator.hpp>
  14. #include <boost/uuid/name_generator.hpp>
  15. #include <boost/uuid/string_generator.hpp>
  16. #include <boost/uuid/random_generator.hpp>
  17. int main(int, char*[])
  18. {
  19. return 0;
  20. }