Samchon Framework for CPP  1.0.0
ExternalServerArray.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/protocol/ExternalSystemArray.hpp>
5 
6 namespace samchon
7 {
8 namespace protocol
9 {
19  class SAMCHON_FRAMEWORK_API ExternalServerArray
20  : public virtual ExternalSystemArray
21  {
22  protected:
23  typedef ExternalSystemArray super;
24 
25  public:
26  /* ------------------------------------------------------------------
27  CONSTRUCTORS
28  ------------------------------------------------------------------ */
30  virtual ~ExternalServerArray() = default;
31 
32  virtual void start() override;
33  };
34 };
35 };
An array of ExternalSystem(s).
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7