aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flclass.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2003-07-01 02:32:46 +0000
committerThomas Grill <xovo@users.sourceforge.net>2003-07-01 02:32:46 +0000
commit630623a0c7289ddd442d139232dea68dcb07a197 (patch)
tree8f64e01c8e0a63f5174d5131d387e7c0cf5204ea /externals/grill/flext/source/flclass.h
parent86bdc7d828f8df51a072da396217ce6c38b7034a (diff)
""
svn path=/trunk/; revision=741
Diffstat (limited to 'externals/grill/flext/source/flclass.h')
-rw-r--r--externals/grill/flext/source/flclass.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/externals/grill/flext/source/flclass.h b/externals/grill/flext/source/flclass.h
index 8b0e0dc7..3667e961 100644
--- a/externals/grill/flext/source/flclass.h
+++ b/externals/grill/flext/source/flclass.h
@@ -644,6 +644,15 @@ protected:
methfun fun;
};
+ // these outlet functions don't check for thread but send directly to the real-time system
+ void ToSysBang(int n) const;
+ void ToSysFloat(int n,float f) const;
+ void ToSysInt(int n,int f) const;
+ void ToSysBool(int n,bool f) const { ToSysInt(n,f?1:0); }
+ void ToSysSymbol(int n,const t_symbol *s) const;
+ void ToSysList(int n,int argc,const t_atom *argv) const;
+ void ToSysAnything(int n,const t_symbol *s,int argc,const t_atom *argv) const;
+
private:
class pxbnd_object;
public: