Samchon Framework for CPP  1.0.0
DistributedServerArrayMediator.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/templates/distributed/DistributedSystemArrayMediator.hpp>
5 #include <samchon/templates/external/ExternalServerArray.hpp>
6 
7 #include <samchon/templates/distributed/DistributedServer.hpp>
8 
9 namespace samchon
10 {
11 namespace templates
12 {
13 namespace distributed
14 {
28  template <class System = DistributedServer>
30  : public DistributedSystemArrayMediator<System>,
31  public external::ExternalServerArray<System>
32  {
33  public:
39  external::ExternalServerArray<System>()
40  {
41  };
42  virtual ~DistributedServerArrayMediator() = default;
43  };
44 };
45 };
46 };