aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/audio/audio.h
blob: fd4ab690f26a46087cfc6f4d17dbf7c9adbdcfae (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_AUDIO_H
#define __JIN_AUDIO_H
#include "../utils/macros.h"
#include "../common/subsystem.h"

namespace jin
{
namespace audio
{

    class Audio : public common::Subsystem
    {
    public:
        struct Setting : SettingBase
        {

        };

    private: 

        onlyonce bool _init(const SettingBase* setting) override;

    };

    typedef Audio::Setting AudioSetting;

}
}

#endif