Samchon Framework for CPP  1.0.0
DistributedClientArray.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/protocol/master/DistributedSystemArray.hpp>
5 #include <samchon/protocol/ExternalClientArray.hpp>
6 
7 namespace samchon
8 {
9 namespace protocol
10 {
11 namespace master
12 {
22  class SAMCHON_FRAMEWORK_API DistributedClientArray
23  : public virtual DistributedSystemArray,
24  public virtual ExternalClientArray
25  {
26  private:
29 
30  public:
35  virtual ~DistributedClientArray() = default;
36 
37  virtual void construct(std::shared_ptr<library::XML>) override;
38 
39  virtual void start() override;
40 
41  virtual auto toXML() const->std::shared_ptr<library::XML> override;
42  };
43 };
44 };
45 };
An array of ExternalSystem(s).
An array of distributed system drivers.
XML is a class representing xml object.
Definition: XML.hpp:72
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7