16 lines
232 B
C
16 lines
232 B
C
|
#ifndef LOCALFILE_H
|
||
|
#define LOCALFILE_H
|
||
|
|
||
|
#include "../filebase.h"
|
||
|
|
||
|
class CLocalFile : public CFileBase
|
||
|
{
|
||
|
public:
|
||
|
CLocalFile();
|
||
|
~CLocalFile();
|
||
|
|
||
|
public:
|
||
|
bool Open(const char* filename) override;
|
||
|
};
|
||
|
|
||
|
#endif // LOCALFILE_H
|