Samchon Framework for CPP  1.0.0
ParallelClientArray.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/templates/parallel/ParallelSystemArray.hpp>
5 #include <samchon/templates/external/ExternalClientArray.hpp>
6 
7 namespace samchon
8 {
9 namespace templates
10 {
11 namespace parallel
12 {
27  template <class System = ParallelSystem>
29  : public ParallelSystemArray<System>,
30  public external::ExternalClientArray<System>
31  {
32  public:
37  : ParallelSystemArray<System>(),
38  external::ExternalClientArray<System>()
39  {
40  };
41  virtual ~ParallelClientArray() = default;
42  };
43 };
44 };
45 };