Samchon Framework for CPP  1.0.0
ExternalClient.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/protocol/ExternalSystem.hpp>
5 #include <samchon/protocol/IClient.hpp>
6 
7 namespace samchon
8 {
9 namespace protocol
10 {
20  class SAMCHON_FRAMEWORK_API ExternalClient
21  : public virtual ExternalSystem
22  {
23  friend class ExternalClientArray;
24 
25  private:
26  typedef ExternalSystem super;
27 
28  public:
33  virtual ~ExternalClient() = default;
34 
35  virtual void start() override;
36  };
37 };
38 };
A network driver for an external client.
A network driver for an external system.
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7