Samchon Framework for CPP  1.0.0
IListener.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/protocol/IProtocol.hpp>
5 
6 namespace samchon
7 {
8 namespace protocol
9 {
10  class Communicator;
11 
29  class IListener : public virtual IProtocol
30  {
31  friend class Communicator;
32 
33  protected:
34  virtual void _Reply_data(std::shared_ptr<Invoke>) = 0;
35  };
36 };
37 };