Files
src/external/3rd/library/platform/utils/Base/win32/File.h
T
2014-01-16 07:25:50 -07:00

23 lines
353 B
C++

// File.h: interface for the CFile class.
//
//////////////////////////////////////////////////////////////////////
#ifndef BASE_FILE_H
#define BASE_FILE_H
#include <stdio.h>
class CFile
{
public:
CFile(const char *);
virtual ~CFile();
bool IsOpen();
private:
FILE* mFileHandle;
};
#endif // BASE_FILE_H