diff options
author | George Hazan <ghazan@miranda.im> | 2019-07-26 20:02:16 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-07-26 20:02:22 +0300 |
commit | 9374c8e701dcb61a46c89a854235d91a23bf672e (patch) | |
tree | ad366bc7f47da578fb33a57c32912689f5aadecb /protocols/YAMN/src/proto/netclient.h | |
parent | 3c5923d11431c515db57e4e972d53bf0443f1bcb (diff) |
warning fixes
Diffstat (limited to 'protocols/YAMN/src/proto/netclient.h')
-rw-r--r-- | protocols/YAMN/src/proto/netclient.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/YAMN/src/proto/netclient.h b/protocols/YAMN/src/proto/netclient.h index 99ec0888f1..dff43ae0f1 100644 --- a/protocols/YAMN/src/proto/netclient.h +++ b/protocols/YAMN/src/proto/netclient.h @@ -5,6 +5,8 @@ class CNetClient { public: CNetClient(): Stopped(FALSE) {} + virtual ~CNetClient() {} + virtual void Connect(const char* servername, const int port)=0; virtual void Send(const char *query)=0; virtual char* Recv(char *buf= nullptr, int buflen=65536)=0; |