/** @file @brief ファイルパスを示すクラスを記述する。 */ #pragma once //----------------------------------------------------------- #include //----------------------------------------------------------- namespace apcl { namespace file { using ::std::string; /** * ファイルパスを示すクラス *
	 * ディレクトリはスラッシュで区切られる。
	 * 
*/ class FilePath { public: FilePath(); virtual ~FilePath(); /// ファイルパスを設定する。 void setPath( const string& aFilePath ); /// ファイルパスを取得する。 const string& path()const; private: string path_; }; } // end of namespace file } // end of namespace apcl