blob: 31c4d042e37fa7498d23d63050bb1c0acdefba33 (
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
31
32
|
#ifndef __JE_NET_H
#define __JE_NET_H
#include "../core/je_configuration.h"
#if LIBJIN_MODULES_NET
#include "../common/je_subsystem.hpp"
#include "je_socket.h"
namespace JinEngine
{
namespace Net
{
class NetManager : public Subsystem<NetManager>
{
public:
protected:
singleton(NetManager);
NetManager() {};
~NetManager() {};
bool initSystem(const SettingBase* setting) override;
void quitSystem() override;
};
} // namespace Net
} // namespace JinEngine
#endif // LIBJIN_MODULES_NET
#endif // __JE_NET_H
|