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 16 void f(); 17 main()18int main() 19 { 20 f(); 21 } 22