// // CFile Class // #ifndef CFILE_H_ #define CFILE_H_ #include #include #include "bctypes.h" #include "memstream.h" //------------------------------------------------------------------------------ class CFile { public: CFile( std::string filepath ); ~CFile(); private: std::string m_filepath; }; #endif // CFILE_H_