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