BEAST/BSE - Better Audio System and Sound Engine  0.8.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
bsesubiport.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_SUB_IPORT_H__
00003 #define __BSE_SUB_IPORT_H__
00004 #include <bse/bsesource.hh>
00005 #include <bse/bseengine.hh>
00006 G_BEGIN_DECLS
00007 
00008 #define BSE_TYPE_SUB_IPORT              (BSE_TYPE_ID (BseSubIPort))
00009 #define BSE_SUB_IPORT(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), BSE_TYPE_SUB_IPORT, BseSubIPort))
00010 #define BSE_SUB_IPORT_CLASS(class)      (G_TYPE_CHECK_CLASS_CAST ((class), BSE_TYPE_SUB_IPORT, BseSubIPortClass))
00011 #define BSE_IS_IPORT(object)            (G_TYPE_CHECK_INSTANCE_TYPE ((object), BSE_TYPE_SUB_IPORT))
00012 #define BSE_IS_IPORT_CLASS(class)       (G_TYPE_CHECK_CLASS_TYPE ((class), BSE_TYPE_SUB_IPORT))
00013 #define BSE_SUB_IPORT_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), BSE_TYPE_SUB_IPORT, BseSubIPortClass))
00014 #define BSE_SUB_IPORT_N_PORTS           (4)
00015 
00016 struct BseSubIPort : BseSource {
00017   gchar        **input_ports;
00018 };
00019 struct BseSubIPortClass : BseSourceClass
00020 {};
00021 
00022 G_END_DECLS
00023 
00024 #endif /* __BSE_SUB_IPORT_H__ */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines