test_multi_module1.cpp 675 B

123456789101112131415161718192021
  1. // ----------------------------------------------------------------------------
  2. // Copyright (C) 2002-2006 Marcin Kalicinski
  3. //
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. // For more information, see www.boost.org
  9. // ----------------------------------------------------------------------------
  10. #include <boost/property_tree/ptree.hpp>
  11. #include <boost/property_tree/info_parser.hpp>
  12. #include <boost/property_tree/ini_parser.hpp>
  13. #include <boost/property_tree/json_parser.hpp>
  14. #include <boost/property_tree/xml_parser.hpp>
  15. void f();
  16. int main()
  17. {
  18. f();
  19. }