22 lines
335 B
C++
22 lines
335 B
C++
#ifndef FILEBASE_H
|
|
#define FILEBASE_H
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <wx/wx.h>
|
|
|
|
class CTransmFile
|
|
{
|
|
public:
|
|
CTransmFile();
|
|
~CTransmFile();
|
|
|
|
public:
|
|
void SetRemoteIpPort(const wxString& remote_ip, int remote_port);
|
|
|
|
protected:
|
|
wxString remote_ip_{};
|
|
int remote_port_{9898};
|
|
};
|
|
|
|
#endif // FILEBASE_Ha
|