Samchon Framework for CPP  1.0.0
ParallelServerClientArray.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/templates/parallel/ParallelSystemArray.hpp>
5 #include <samchon/templates/external/ExternalServerClientArray.hpp>
6 
7 namespace samchon
8 {
9 namespace templates
10 {
11 namespace parallel
12 {
31  template <class System = ParallelSystem>
33  : public ParallelSystemArray<System>,
35  {
36  public:
41  : ParallelSystemArray<System>(),
42  external::ExternalServerClientArray<System>()
43  {
44  };
45  virtual ~ParallelServerClientArray() = default;
46  };
47 };
48 };
49 };