aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/net/net.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/net/net.cpp')
-rw-r--r--src/libjin/net/net.cpp24
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()
+ {
+
+ }
+
+}
+}