aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/fldsp.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2002-12-30 04:32:19 +0000
committerThomas Grill <xovo@users.sourceforge.net>2002-12-30 04:32:19 +0000
commit62530f3fc55d3dc1c12bcd3b88f0922c15cd82e5 (patch)
treea57fc5a54ed78f189f074724396f81330faf9a3b /externals/grill/flext/source/fldsp.h
parent562dcc336797951b2a8707413aa44177484c9f2a (diff)
""
svn path=/trunk/; revision=310
Diffstat (limited to 'externals/grill/flext/source/fldsp.h')
-rw-r--r--externals/grill/flext/source/fldsp.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/externals/grill/flext/source/fldsp.h b/externals/grill/flext/source/fldsp.h
index 4926d873..6299544a 100644
--- a/externals/grill/flext/source/fldsp.h
+++ b/externals/grill/flext/source/fldsp.h
@@ -24,7 +24,7 @@ WARRANTIES, see the file, "license.txt," in this distribution.
/*! \brief Flext dsp enabled base object
*/
-class FLEXT_EXT flext_dsp:
+class FLEXT_SHARE flext_dsp:
public flext_base
{
FLEXT_HEADER_S(flext_dsp,flext_base,Setup)
@@ -105,11 +105,21 @@ public:
*/
void AddInSignal(int m = 1) { AddInlet(xlet::tp_sig,m); }
+ /*! \brief Add signal inlet (with description)
+ \param desc Description of inlet
+ */
+ void AddInSignal(const char *desc) { AddInlet(xlet::tp_sig,1,desc); }
+
/*! \brief Add signal outlet(s)
\param m Number of inlets to add
*/
void AddOutSignal(int m = 1) { AddOutlet(xlet::tp_sig,m); }
+ /*! \brief Add signal outlet (with description)
+ \param desc Description of outlet
+ */
+ void AddOutSignal(const char *desc) { AddOutlet(xlet::tp_sig,1,desc); }
+
//! @}
//! @}