| 22 | path p; |
| 23 | |
| 24 | void print_boost_macros() |
| 25 | { |
| 26 | std::cout << "Boost " |
| 27 | << BOOST_VERSION / 100000 << '.' |
| 28 | << BOOST_VERSION / 100 % 1000 << '.' |
| 29 | << BOOST_VERSION % 100 << ", " |
| 30 | #ifndef _WIN64 |
| 31 | << BOOST_COMPILER << ", " |
| 32 | #else |
| 33 | << BOOST_COMPILER << " with _WIN64 defined, " |
| 34 | #endif |
| 35 | << BOOST_STDLIB << ", " |
| 36 | << BOOST_PLATFORM |
| 37 | << std::endl; |
| 38 | } |
| 39 | |
| 40 | const char* file_type_tab[] = { "status_error", "file_not_found", "regular_file", "directory_file", |
| 41 | "symlink_file", "block_file", "character_file", "fifo_file", "socket_file", |