15 lines
157 B
C++
15 lines
157 B
C++
#include "remotefile.h"
|
|
|
|
CRemoteFile::CRemoteFile()
|
|
{
|
|
}
|
|
|
|
CRemoteFile::~CRemoteFile()
|
|
{
|
|
}
|
|
|
|
bool CRemoteFile::Open(const char* filename)
|
|
{
|
|
return false;
|
|
}
|