My Project
filePath.h
Go to the documentation of this file.
1/* filePath.h
2 */
3#ifndef OSL_MISC_CARRAY_H
4#define OSL_MISC_CARRAY_H
5
6#ifndef MINIMAL
7
8#include <boost/filesystem/path.hpp>
9#include <string>
10
11namespace osl
12{
13 namespace misc
14 {
15 // Converts boost::filesystem::path to a string representation.
16 // This function hides incompatibility among various boost::filesystem
17 // versions.
18 std::string file_string(const boost::filesystem::path& path);
19 }
20}
21
22#endif /* MINIMAL */
23#endif /* OSL_MISC_CARRAY_H */
24// ;;; Local Variables:
25// ;;; mode:c++
26// ;;; c-basic-offset:2
27// ;;; End:
std::string file_string(const boost::filesystem::path &path)
Definition filePath.cc:6