Samchon Framework for CPP  1.0.0
ParallelServerArray.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/protocol/master/ParallelSystemArray.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 ParallelServerArray
23  : public virtual ParallelSystemArray,
24  public virtual ExternalServerArray
25  {
26  protected:
27  typedef ParallelSystemArray super;
29 
30  public:
35  virtual ~ParallelServerArray() = default;
36  };
37 };
38 };
39 };
An array of ExternalSystem(s).
An array of parallel system drivers.
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7