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