Samchon Framework for CPP  1.0.0
DistributedServerArray.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/protocol/master/DistributedSystemArray.hpp>
5 #include <samchon/protocol/ExternalServerArray.hpp>
6 
7 namespace samchon
8 {
9 namespace protocol
10 {
11 namespace master
12 {
22  class SAMCHON_FRAMEWORK_API DistributedServerArray
23  : public virtual DistributedSystemArray,
24  public virtual ExternalServerArray
25  {
26  private:
29 
30  public:
35  virtual ~DistributedServerArray() = default;
36 
37  virtual void start() override;
38  };
39 };
40 };
41 };
An array of ExternalSystem(s).
An array of distributed system drivers.
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7