Samchon Framework for CPP  1.0.0
ExternalClient.cpp
1 #include <samchon/protocol/ExternalClient.hpp>
2 
3 #include <thread>
4 #include <samchon/library/XML.hpp>
5 
6 using namespace std;
7 using namespace samchon::library;
8 using namespace samchon::protocol;
9 
10 /* ------------------------------------------------------------------
11  CONSTRUCTORS
12 ------------------------------------------------------------------ */
13 ExternalClient::ExternalClient()
14  : super()
15 {
16 }
18 {
19  listen();
20 }
Definition: RWMutex.hpp:4
Package of libraries.
Definition: library.hpp:84
virtual void start() override
Start interaction.
Package of network protocol and libraries.
Definition: protocol.hpp:185
A network driver for an external system.
virtual void listen()
Listens message from a related system.
Definition: IClient.cpp:45