/* * * Created on: Mar 1, 2021 * Author: astrisw * */ #pragma once #include #include #include namespace inaf::oasbo::Receivers{ /* * class BaseSocket * Implementation of a socket that allows to communicate with the sender. * This parent class must be inherited in order to implement your own protocol, * methods connect() and readPacket must be overridden * * @member field host: address of the host machine * @member field port: listen port * @member field protocol: communication protocol. */ class BaseReceiver{ protected: std::string host; public: virtual std::string getHost() = 0; virtual void setHost(std::string host) = 0; virtual int connectToClient()=0; virtual int closeConnectionToClient()=0; virtual bool isConnectedToClient() const =0; virtual int receiveFromClient(PacketLib::BasePacket &) = 0; virtual ~BaseReceiver() = default; }; }