Samchon Framework for CPP  1.0.0
DistributedServer.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/protocol/master/DistributedSystem.hpp>
5 #include <samchon/protocol/ExternalServer.hpp>
6 
7 namespace samchon
8 {
9 namespace protocol
10 {
11 namespace master
12 {
22  class SAMCHON_FRAMEWORK_API DistributedServer
23  : public virtual DistributedSystem,
24  public virtual ExternalServer
25  {
26  private:
27  typedef DistributedSystem super;
29 
30  public:
35  virtual ~DistributedServer() = default;
36 
37  virtual void construct(std::shared_ptr<library::XML>) override;
38  virtual auto toXML() const->std::shared_ptr<library::XML> override;
39  };
40 };
41 };
42 };
A network driver for an external server.
A network driver for an external system.
A network driver for a distributed system.
XML is a class representing xml object.
Definition: XML.hpp:72
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7
A network driver for a distributed server.