Samchon Framework for CPP  1.0.0
DistributedClient.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/protocol/master/DistributedSystem.hpp>
5 #include <samchon/protocol/ExternalClient.hpp>
6 
7 namespace samchon
8 {
9 namespace protocol
10 {
11 namespace master
12 {
22  class SAMCHON_FRAMEWORK_API DistributedClient
23  : public virtual DistributedSystem,
24  public virtual ExternalClient
25  {
26  private:
27  typedef DistributedSystem super;
29 
30  public:
35  virtual ~DistributedClient() = default;
36  };
37 };
38 };
39 };
A network driver for an external client.
A network driver for an external system.
A network driver for a distributed system.
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7
A network driver for a distributed client.