aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/net
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/net')
-rw-r--r--src/libjin/net/net.cpp30
-rw-r--r--src/libjin/net/net.h26
2 files changed, 28 insertions, 28 deletions
diff --git a/src/libjin/net/net.cpp b/src/libjin/net/net.cpp
index e6c3d98..8fd4256 100644
--- a/src/libjin/net/net.cpp
+++ b/src/libjin/net/net.cpp
@@ -2,23 +2,23 @@
namespace jin
{
-namespace net
-{
+ namespace net
+ {
- bool Net::initSystem(const SettingBase* setting)
- {
- #ifdef _WIN32
- #if LIBJIN_NET_TEKCOS
- tk_init();
- #endif
- #endif
- return true;
- }
+ bool Net::initSystem(const SettingBase* setting)
+ {
+ #ifdef _WIN32
+ #if LIBJIN_NET_TEKCOS
+ tk_init();
+ #endif
+ #endif
+ return true;
+ }
- void Net::quitSystem()
- {
+ void Net::quitSystem()
+ {
- }
+ }
-} // net
+ } // net
} // jin \ No newline at end of file
diff --git a/src/libjin/net/net.h b/src/libjin/net/net.h
index 27353dc..b5f999f 100644
--- a/src/libjin/net/net.h
+++ b/src/libjin/net/net.h
@@ -8,23 +8,23 @@
namespace jin
{
-namespace net
-{
+ namespace net
+ {
- class Net : public Subsystem<Net>
- {
- public:
+ class Net : public Subsystem<Net>
+ {
+ public:
- protected:
- SINGLETON(Net);
- Net() {};
- ~Net() {};
- bool initSystem(const SettingBase* setting) override;
- void quitSystem() override;
+ protected:
+ SINGLETON(Net);
+ Net() {};
+ ~Net() {};
+ bool initSystem(const SettingBase* setting) override;
+ void quitSystem() override;
- };
+ };
-} // net
+ } // net
} // jin
#endif // LIBJIN_MODULES_NET