| 30 | //------------------------------------ cpp_main --------------------------------------// |
| 31 | |
| 32 | int cpp_main(int argc, char* argv[]) |
| 33 | { |
| 34 | cout << "Hello, filesystem world" << endl; |
| 35 | |
| 36 | BOOST_TEST(fs::exists(".")); |
| 37 | |
| 38 | return ::boost::report_errors(); |
| 39 | } // cpp_main |