/** @file @brief FilePath.hppの実装を記述する。 */ #include //----------------------------------------------------------- using namespace ::apcl::file; //----------------------------------------------------------- FilePath::FilePath() { } //----------------------------------------------------------- FilePath::~FilePath() { } //----------------------------------------------------------- void FilePath::setPath( const string& aPath ) { path_ = aPath; } //----------------------------------------------------------- const string& FilePath::path()const { return path_; }