forked from kbinani/libvsq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDynamicsMode.hpp
More file actions
41 lines (35 loc) · 956 Bytes
/
DynamicsMode.hpp
File metadata and controls
41 lines (35 loc) · 956 Bytes
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
/**
* DynamicsMode.hpp
* Copyright © 2012 kbinani
*
* This file is part of libvsq.
*
* libvsq is free software; you can redistribute it and/or
* modify it under the terms of the BSD License.
*
* libvsq is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
#ifndef __DynamicsMode_h__
#define __DynamicsMode_h__
#include "vsqglobal.hpp"
VSQ_BEGIN_NAMESPACE
/**
* @brief VOCALOID1における、ダイナミクスモードを表す定数を格納するための列挙子
*/
class DynamicsMode{
public:
enum DynamicsModeEnum{
/**
* @brief DYNカーブが非表示になるモード(デフォルト)
*/
STANDARD = 0,
/**
* @brief DYNカーブが表示されるモード(エキスパートモード)
*/
EXPERT = 1
};
};
VSQ_END_NAMESPACE
#endif