Samchon Framework for CPP  1.0.0
ParallelServer.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/protocol/master/ParallelSystem.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 ParallelServer
23  : public virtual ParallelSystem,
24  public virtual ExternalServer
25  {
26  protected:
27  typedef ParallelSystem super;
29 
30  public:
35  virtual ~ParallelServer() = 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 a parallel system.
A network driver for an external system.
A network driver for a parallel server.
XML is a class representing xml object.
Definition: XML.hpp:72
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7