My Project
filePath.cc
Go to the documentation of this file.
1 #include "osl/misc/filePath.h"
2 
3 #ifndef MINIMAL
4 
5 std::string osl::misc::
6 file_string(const boost::filesystem::path& path)
7 {
8 #if BOOST_FILESYSTEM_VERSION >=3
9  return path.string();
10 #else
11  return path.file_string();
12 #endif
13 }
14 
15 #endif /* MINIMAL */
16 // ;;; Local Variables:
17 // ;;; mode:c++
18 // ;;; c-basic-offset:2
19 // ;;; End:
std::string file_string(const boost::filesystem::path &path)
Definition: filePath.cc:6