BEAST - Free Software Audio Synthesizer and Tracker  0.9.2
bseconstant.hh
Go to the documentation of this file.
1  // Licensed GNU LGPL v2.1 or later: http://www.gnu.org/licenses/lgpl.html
2 #ifndef __BSE_CONSTANT_H__
3 #define __BSE_CONSTANT_H__
4 
5 #include <bse/bsesource.hh>
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif /* __cplusplus */
10 
11 
12 
13 
14 /* --- object type macros --- */
15 #define BSE_TYPE_CONSTANT (BSE_TYPE_ID (BseConstant))
16 #define BSE_CONSTANT(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), BSE_TYPE_CONSTANT, BseConstant))
17 #define BSE_CONSTANT_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), BSE_TYPE_CONSTANT, BseConstantClass))
18 #define BSE_IS_CONSTANT(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), BSE_TYPE_CONSTANT))
19 #define BSE_IS_CONSTANT_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), BSE_TYPE_CONSTANT))
20 #define BSE_CONSTANT_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), BSE_TYPE_CONSTANT, BseConstantClass))
21 #define BSE_CONSTANT_N_OUTPUTS (4)
22 /* --- BseConstant source --- */
23 struct BseConstant;
24 struct BseConstantClass;
26  gfloat constants[BSE_CONSTANT_N_OUTPUTS];
27 };
29 {};
30 
31 #ifdef __cplusplus
32 }
33 #endif /* __cplusplus */
34 #endif /* __BSE_CONSTANT_H__ */
Definition: bseconstant.hh:25
Definition: bseconstant.hh:28
Definition: bsesource.hh:84
Definition: bsesource.hh:92