Samchon Framework for CPP  1.0.0
SlaveSystem.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/protocol/ExternalSystem.hpp>
5 
6 namespace samchon
7 {
8 namespace protocol
9 {
10 namespace slave
11 {
25  class SAMCHON_FRAMEWORK_API SlaveSystem
26  : public virtual ExternalSystem
27  {
28  protected:
29  typedef ExternalSystem super;
30 
31  public:
35  SlaveSystem();
36  virtual ~SlaveSystem() = default;
37 
38  //virtual void sendData(std::shared_ptr<Invoke>) override;
39 
40  protected:
47  virtual void _replyData(std::shared_ptr<Invoke>) override;
48  };
49 };
50 };
51 };
An Entity and a container of children Entity objects.
Definition: EntityGroup.hpp:52
A network driver for an external system.
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7