BEAST/BSE - Better Audio System and Sound Engine  0.8.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
bseladspamodule.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_LADSPA_MODULE_H__
00003 #define __BSE_LADSPA_MODULE_H__
00004 
00005 #include <bse/bsesource.hh>
00006 #include <bse/bseladspa.hh>
00007 
00008 G_BEGIN_DECLS
00009 
00010 /* --- object type macros --- */
00011 #define BSE_TYPE_LADSPA_MODULE              (BSE_TYPE_ID (BseLadspaModule))
00012 #define BSE_LADSPA_MODULE(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), BSE_TYPE_LADSPA_MODULE, BseLadspaModule))
00013 #define BSE_LADSPA_MODULE_CLASS(class)      (G_TYPE_CHECK_CLASS_CAST ((class), BSE_TYPE_LADSPA_MODULE, BseLadspaModuleClass))
00014 #define BSE_IS_LADSPA_MODULE(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), BSE_TYPE_LADSPA_MODULE))
00015 #define BSE_IS_LADSPA_MODULE_CLASS(class)   (G_TYPE_CHECK_CLASS_TYPE ((class), BSE_TYPE_LADSPA_MODULE))
00016 #define BSE_LADSPA_MODULE_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), BSE_TYPE_LADSPA_MODULE, BseLadspaModuleClass))
00017 
00018 
00019 /* --- BseLadspaModule --- */
00020 struct BseLadspaModule : BseSource {
00021   gfloat    *cvalues;
00022 };
00023 struct BseLadspaModuleClass : BseSourceClass {
00024   BseLadspaInfo *bli;
00025   BseModuleClass *gsl_class;
00026 };
00027 
00028 void    bse_ladspa_module_derived_type_info     (GType                  type,
00029                                                  BseLadspaInfo         *bli,
00030                                                  GTypeInfo             *type_info);
00031 
00032 G_END_DECLS
00033 
00034 #endif /* __BSE_LADSPA_MODULE_H__ */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines