OSDN Git Service

fix cmake/Macros.cmake
[moflib/moflib.git] / moflib-1.0 / src / mof / FilePath.hpp
1 #ifndef MOF_FILE_PATH_HPP
2 #define MOF_FILE_PATH_HPP
3
4 #include "mof/tstring.hpp"
5
6 namespace mof{
7
8 class FilePath{
9         mof::tstring m_path;
10
11 public:
12         FilePath(const mof::tstring& path);
13
14         mof::tstring getFormat();
15         mof::tstring& getPath();
16         mof::tstring dir();
17         mof::tstring basename();
18 };
19
20 }
21
22 #endif