aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Net/net.cpp
blob: db39be71c7ddeaad0c12d6674f90d499942cfd7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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()
    {

    }

}
}