BEAST - Free Software Audio Synthesizer and Tracker  0.9.2
bsecsynth.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_CSYNTH_H__
3 #define __BSE_CSYNTH_H__
4 
5 #include <bse/bsesnet.hh>
6 
7 G_BEGIN_DECLS
8 
9 #define BSE_TYPE_CSYNTH (BSE_TYPE_ID (BseCSynth))
10 #define BSE_CSYNTH(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), BSE_TYPE_CSYNTH, BseCSynth))
11 #define BSE_CSYNTH_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), BSE_TYPE_CSYNTH, BseCSynthClass))
12 #define BSE_IS_CSYNTH(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), BSE_TYPE_CSYNTH))
13 #define BSE_IS_CSYNTH_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), BSE_TYPE_CSYNTH))
14 #define BSE_CSYNTH_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), BSE_TYPE_CSYNTH, BseCSynthClass))
15 #define BSE_CSYNTH_USER_SYNTH(src) ((BSE_OBJECT_FLAGS (src) & BSE_CSYNTH_FLAG_USER_SYNTH) != 0)
16 
17 struct BseCSynth : BseSNet {};
19 
20 G_END_DECLS
21 
22 namespace Bse {
23 
24 class CSynthImpl : public SNetImpl, public virtual CSynthIface {
25 protected:
26  virtual ~CSynthImpl ();
27 public:
28  explicit CSynthImpl (BseObject*);
29 };
30 
31 } // Bse
32 
33 
34 #endif /* __BSE_CSYNTH_H__ */
Definition: bsecsynth.hh:17
The Bse namespace contains all functions of the synthesis engine.
Definition: bstbseutils.cc:67
Definition: bsecsynth.hh:18
Definition: bsesnet.hh:109
Definition: bsesnet.hh:36
See also the corresponding IDL class CSynth.
Definition: bseserverapi.hh:831
Definition: bseobject.hh:60
Definition: bsesnet.hh:45
Definition: bsecsynth.hh:24