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