diff options
author | chai <chaifix@163.com> | 2018-08-08 17:28:41 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-08-08 17:28:41 +0800 |
commit | aa7549126a4e821cecf75fbc32a433a7f8122d2b (patch) | |
tree | 1b1eaa32207384564be7e8c62b5bd389722cb809 /src/libjin/net/net.cpp | |
parent | 98efbbdb917a5fd854e288d4a74eb18d88fed939 (diff) |
+network
Diffstat (limited to 'src/libjin/net/net.cpp')
-rw-r--r-- | src/libjin/net/net.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/libjin/net/net.cpp b/src/libjin/net/net.cpp index e69de29..db39be7 100644 --- a/src/libjin/net/net.cpp +++ b/src/libjin/net/net.cpp @@ -0,0 +1,24 @@ +#include "Net.h" + +namespace jin +{ +namespace net +{ + + bool Net::initSystem(const SettingBase* setting) + { + #ifdef _WIN32 + #if JIN_NET_TEKCOS + tk_init(); + #endif + #endif + return true; + } + + void Net::quitSystem() + { + + } + +} +} |