From 630623a0c7289ddd442d139232dea68dcb07a197 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Tue, 1 Jul 2003 02:32:46 +0000 Subject: "" svn path=/trunk/; revision=741 --- externals/grill/flext/source/flclass.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'externals/grill/flext/source/flclass.h') 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: -- cgit v1.2.1