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