mirror of
https://github.com/SWG-Source/src.git
synced 2026-07-28 22:15:49 -04:00
23 lines
353 B
C++
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
|