BEAST - Free Software Audio Synthesizer and Tracker  0.10.0
bsewaverepo.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_WAVE_REPO_H__
3 #define __BSE_WAVE_REPO_H__
4 
5 #include <bse/bsesuper.hh>
6 
7 
8 G_BEGIN_DECLS
9 
10 
11 /* --- object type macros --- */
12 #define BSE_TYPE_WAVE_REPO (BSE_TYPE_ID (BseWaveRepo))
13 #define BSE_WAVE_REPO(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), BSE_TYPE_WAVE_REPO, BseWaveRepo))
14 #define BSE_WAVE_REPO_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), BSE_TYPE_WAVE_REPO, BseWaveRepoClass))
15 #define BSE_IS_WAVE_REPO(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), BSE_TYPE_WAVE_REPO))
16 #define BSE_IS_WAVE_REPO_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), BSE_TYPE_WAVE_REPO))
17 #define BSE_WAVE_REPO_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), BSE_TYPE_WAVE_REPO, BseWaveRepoClass))
18 
20  GList *waves;
21 };
23 {};
24 
25 G_END_DECLS
26 
27 namespace Bse {
28 
29 class WaveRepoImpl : public SuperImpl, public virtual WaveRepoIface {
30 protected:
31  virtual ~WaveRepoImpl ();
32 public:
33  explicit WaveRepoImpl (BseObject*);
34 };
35 
36 } // Bse
37 
38 #endif /* __BSE_WAVE_REPO_H__ */
See also the corresponding IDL class WaveRepo.
Definition: bseserverapi.hh:1395
The Bse namespace contains all functions of the synthesis engine.
Definition: bstbseutils.cc:88
Definition: bsesuper.hh:25
Definition: bsesuper.hh:31
Definition: bsewaverepo.hh:29
Definition: bsewaverepo.hh:22
Definition: bseobject.hh:61
Definition: bsesuper.hh:44
Definition: bsewaverepo.hh:19