split client and server interface

This commit is contained in:
Erik Frojdh
2019-01-23 12:07:44 +01:00
parent 99a1c609f1
commit c3472f295b
5 changed files with 301 additions and 4 deletions

View File

@ -9,7 +9,7 @@
#include "receiver_defs.h"
class MySocketTCP;
class ClientInterface;
class ServerInterface;
class slsReceiverImplementation;
@ -363,5 +363,5 @@ protected:
MySocketTCP* mySock;
/** client interface */
ClientInterface* interface;
ServerInterface* interface;
};