blob: 19c01926d1b767561f0b1003c130212f1a787017 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#ifndef __JE_NET_H__
#define __JE_NET_H__
#include "../core/configuration.h"
#if defined(jin_net)
#include "../common/subsystem.hpp"
#include "socket.h"
namespace JinEngine
{
namespace Net
{
///
///
///
class NetManager : public Subsystem<NetManager>
{
public:
///
///
///
NetManager() {};
///
///
///
~NetManager() {};
///
///
///
bool startSystem(const SettingBase* setting) override;
///
///
///
void quitSystem() override;
};
} // namespace Net
} // namespace JinEngine
#endif // defined(jin_net)
#endif // __JE_NET_H__
|