Samchon Framework for CPP  1.0.0
ExternalServerBase.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <string>
5 
6 namespace samchon
7 {
8 namespace templates
9 {
10 namespace external
11 {
12  class ExternalSystem;
13 
14 namespace base
15 {
16  class ExternalServerBase
17  {
18  friend class ExternalSystem;
19 
20  protected:
24  std::string ip;
25 
29  int port;
30  };
31 };
32 };
33 };
34 };