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