blob: a6c5099edb635f73f07c127b97477c19ca3fec3e (
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
|
#ifndef __JIN_COMMON_SUBSYSTEM_H
#define __JIN_COMMON_SUBSYSTEM_H
#include "../utils/macros.h"
namespace jin
{
namespace common
{
class Subsystem
{
public:
struct Setting {};
bool init(const Setting* setting)
{
static bool result = _init(setting);
return result;
}
typedef Subsystem::Setting SettingBase;
private:
virtual onlyonce bool _init(const Setting* setting) = 0;
};
}
}
#endif
|