HiveMind
IGreetHandler.h
Go to the documentation of this file.
1 #ifndef __IGREETHANDLER_H_
2 #define __IGREETHANDLER_H_
3 
4 class IGreetHandler {
5  public:
6  virtual ~IGreetHandler() = default;
7 
12  virtual bool greet() = 0;
13 };
14 
15 #endif // __IGREETHANDLER_H_
IGreetHandler::greet
virtual bool greet()=0
wait for a greet and then send the greet response. Serializes directly to the stream and not the the ...
IGreetHandler
Definition: IGreetHandler.h:4
IGreetHandler::~IGreetHandler
virtual ~IGreetHandler()=default