Go to the source code of this file.
Functions | |
| boost::filesystem::path | boostPath (const std::string &file) |
|
|
Definition at line 20 of file FsPath_boost.cpp. 00021 {
00022 #if BOOST_VERSION < 103100
00023 return boost::filesystem::path(file);
00024 #else
00025 return boost::filesystem::path(file,
00026 boost::filesystem::portable_posix_name);
00027 #endif
00028 }
|
1.4.2