aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flmeth.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-07-19 13:17:50 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-07-19 13:17:50 +0000
commitad51a5256a81891061f4c1cc729c718029beb128 (patch)
treecc7472041e4f67c1d8f31b0d4c4981d27fbe5039 /externals/grill/flext/source/flmeth.cpp
parent35a59e7dbce7f5cd6fb8c26e40fc66dfd8384cce (diff)
upped version number
optimizations for message handling and memory footprint made flext::Forward threadsafe digest one-element list messages as single atoms simplified message analysis svn path=/trunk/; revision=3359
Diffstat (limited to 'externals/grill/flext/source/flmeth.cpp')
-rwxr-xr-xexternals/grill/flext/source/flmeth.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/externals/grill/flext/source/flmeth.cpp b/externals/grill/flext/source/flmeth.cpp
index 2da2b3a2..c391f950 100755
--- a/externals/grill/flext/source/flmeth.cpp
+++ b/externals/grill/flext/source/flmeth.cpp
@@ -35,12 +35,6 @@ void flext_base::MethItem::SetArgs(methfun _fun,int _argc,metharg *_args)
argc = _argc,args = _args;
}
-
-void flext_base::AddMethodDef(int inlet,const t_symbol *tag)
-{
- methhead.Add(new MethItem,tag,inlet);
-}
-
/*! \brief Add a method to the queue
*/
void flext_base::AddMethod(ItemCont *ma,int inlet,const t_symbol *tag,methfun fun,metharg tp,...)
@@ -95,7 +89,7 @@ void flext_base::ListMethods(AtomList &la,int inlet) const
int i;
for(i = 0; i <= 1; ++i) {
- ItemCont *a = i?&methhead:clmethhead;
+ ItemCont *a = i?methhead:clmethhead;
if(a && a->Contained(inlet)) {
ItemSet &ai = a->GetInlet(inlet);
for(ItemSet::iterator as(ai); as; ++as) {