aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/net/net.cpp
blob: e6c3d98d366624f06d35af70ab1f57be1e250f96 (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 LIBJIN_NET_TEKCOS 
        tk_init();
    #endif 
    #endif
        return true;
    }

    void Net::quitSystem()
    {

    }

} // net
} // jin