client specifies index of receiver returned error, skeleton of including clientinterface in receiver

This commit is contained in:
2018-10-10 13:15:16 +02:00
parent 6d9530ee1d
commit e1d570e8ce
6 changed files with 156 additions and 144 deletions

View File

@ -9,6 +9,7 @@
#include "receiver_defs.h"
class MySocketTCP;
class ClientInterface;
class slsReceiverImplementation;
@ -365,6 +366,10 @@ class slsReceiverTCPIPInterface : private virtual slsReceiverDefs {
protected:
/** Socket */
MySocketTCP* mySock;
/** client interface */
ClientInterface* clientInterface;
};