Samchon Framework for CPP  1.0.0
ChatService.hpp
1 #pragma once
2 #include <samchon/protocol/service/Service.hpp>
3 
4 namespace samchon
5 {
6  namespace example
7  {
8  namespace chat_service
9  {
10  class ChatRoom;
11 
24  {
25  private:
27 
33 
34  public:
39  virtual ~ChatService();
40 
41  virtual void replyData(std::shared_ptr<protocol::Invoke>) override;
42  };
43  };
44  };
45 };
ChatService(protocol::service::Client *)
Construct from a client.
Definition: ChatService.cpp:11
A network boundary with the client in an User.
Definition: Client.hpp:46
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7