aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/net/net.h
blob: 54ffedee086ca9452c38484e7d51eead5ba0952f (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
25
26
27
28
29
30
#ifndef __JIN_NET_H
#define __JIN_NET_H
#include "../modules.h"
#if JIN_MODULES_NET

#include "../Common/Subsystem.hpp"
#include "Socket.h"

namespace jin
{
namespace net
{

    class Net : public Subsystem<Net>
    {
    public:

    protected:
        Net() {};
        ~Net() {};
        SINGLETON(Net);
        bool initSystem(const SettingBase* setting) override;
        void quitSystem() override;
    };

}
}

#endif // JIN_MODULES_NET
#endif // __JIN_NET_H