/** @file @brief File.hppの実装を記述する。 */ #include //----------------------------------------------------------- //----------------------------------------------------------- using namespace ::apcl::file; //----------------------------------------------------------- File::File(): type_( FileType_Binary ) { } //----------------------------------------------------------- File::~File() { } //----------------------------------------------------------- const FilePath& File::path()const { return path_; } //----------------------------------------------------------- void File::setPath( const FilePath& aPath ) { path_ = aPath; } //----------------------------------------------------------- const Data& File::data()const { return data_; } //----------------------------------------------------------- void File::setData( const Data& aData ) { data_ = aData; } //----------------------------------------------------------- FileType File::type()const { return type_; } //----------------------------------------------------------- void File::setType( const FileType aType ) { type_ = aType; }