Samchon Framework for CPP  1.0.0
DistributedServer.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/templates/distributed/DistributedSystem.hpp>
5 #include <samchon/templates/external/ExternalServer.hpp>
6 
7 namespace samchon
8 {
9 namespace templates
10 {
11 namespace distributed
12 {
24  : public DistributedSystem,
26  {
27  public:
31  DistributedServer(external::base::ExternalSystemArrayBase *systemArray)
32  : DistributedSystem(systemArray),
33  external::ExternalServer(systemArray)
34  {
35  this->system_array_ = systemArray;
36  };
37  virtual ~DistributedServer() = default;
38  };
39 };
40 };
41 };
DistributedServer(external::base::ExternalSystemArrayBase *systemArray)
ExternalServer(base::ExternalSystemArrayBase *systemArray)