27 lines
372 B
C++
27 lines
372 B
C++
//
|
|
// CFile Class
|
|
//
|
|
|
|
#ifndef CFILE_H_
|
|
#define CFILE_H_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "bctypes.h"
|
|
#include "memstream.h"
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
class CFile
|
|
{
|
|
public:
|
|
CFile( std::string filepath );
|
|
~CFile();
|
|
|
|
private:
|
|
std::string m_filepath;
|
|
};
|
|
|
|
#endif // CFILE_H_
|
|
|