Samchon Framework for CPP  1.0.0
ParallelSlaveServerMediator.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/protocol/master/ParallelSlaveSystemMediator.hpp>
5 #include <samchon/protocol/slave/ParallelServer.hpp>
6 
7 namespace samchon
8 {
9 namespace protocol
10 {
11 namespace master
12 {
23  class SAMCHON_FRAMEWORK_API ParallelSlaveServerMediator
24  : public virtual ParallelSlaveSystemMediator,
25  public virtual slave::ParallelServer
26  {
27  private:
30 
31  public:
36  virtual ~ParallelSlaveServerMediator() = default;
37 
38  void setAddress(int);
39  };
40 };
41 };
42 };
A network driver for an external system.
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7