aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/common/subsystem.h
blob: ad280617450d7e3042f7c5cc573060a18fc63aed (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 {};

        typedef Subsystem::Setting SettingBase;

        virtual bool init(const Setting* setting) = 0;

        virtual void quit() = 0;

    private:

        virtual onlyonce bool _init(const Setting* setting) = 0;

        virtual onlyonce void _quit() = 0;
    };

}
}

#endif