BEAST/BSE - Better Audio System and Sound Engine  0.8.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
bsewaverepo.hh
Go to the documentation of this file.
00001  // Licensed GNU LGPL v2.1 or later: http://www.gnu.org/licenses/lgpl.html
00002 #ifndef __BSE_WAVE_REPO_H__
00003 #define __BSE_WAVE_REPO_H__
00004 
00005 #include        <bse/bsesuper.hh>
00006 
00007 
00008 G_BEGIN_DECLS
00009 
00010 
00011 /* --- object type macros --- */
00012 #define BSE_TYPE_WAVE_REPO              (BSE_TYPE_ID (BseWaveRepo))
00013 #define BSE_WAVE_REPO(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), BSE_TYPE_WAVE_REPO, BseWaveRepo))
00014 #define BSE_WAVE_REPO_CLASS(class)      (G_TYPE_CHECK_CLASS_CAST ((class), BSE_TYPE_WAVE_REPO, BseWaveRepoClass))
00015 #define BSE_IS_WAVE_REPO(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), BSE_TYPE_WAVE_REPO))
00016 #define BSE_IS_WAVE_REPO_CLASS(class)   (G_TYPE_CHECK_CLASS_TYPE ((class), BSE_TYPE_WAVE_REPO))
00017 #define BSE_WAVE_REPO_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), BSE_TYPE_WAVE_REPO, BseWaveRepoClass))
00018 
00019 struct BseWaveRepo : BseSuper {
00020   GList         *waves;
00021 };
00022 struct BseWaveRepoClass : BseSuperClass
00023 {};
00024 
00025 G_END_DECLS
00026 
00027 #endif /* __BSE_WAVE_REPO_H__ */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines