filePath.h
Go to the documentation of this file.
00001 /* filePath.h
00002  */
00003 #ifndef OSL_MISC_CARRAY_H
00004 #define OSL_MISC_CARRAY_H
00005 
00006 #ifndef MINIMAL
00007 
00008 #include <boost/filesystem/path.hpp>
00009 #include <string>
00010 
00011 namespace osl
00012 {
00013   namespace misc
00014   {
00015     // Converts boost::filesystem::path to a string representation.
00016     // This function hides incompatibility among various boost::filesystem
00017     // versions.
00018     std::string file_string(const boost::filesystem::path& path);
00019   }
00020 }
00021 
00022 #endif /* MINIMAL */
00023 #endif /* OSL_MISC_CARRAY_H */
00024 // ;;; Local Variables:
00025 // ;;; mode:c++
00026 // ;;; c-basic-offset:2
00027 // ;;; End:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines