blob: 9356c8a2162f09b3ddd16610e937c927606b8498 (
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
|
#ifndef __JIN_AUDIO_H
#define __JIN_AUDIO_H
namespace jin
{
namespace audio
{
class Audio
{
public:
struct Setting
{
};
void init(const Setting& setting);
};
}
}
#endif
|