aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flsupport.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2003-08-14 02:32:51 +0000
committerThomas Grill <xovo@users.sourceforge.net>2003-08-14 02:32:51 +0000
commit21e2f111c461725446457f0d768a95b71c17c847 (patch)
tree7d694777621bab83dbe3ce09f5d57ab91c0e8f85 /externals/grill/flext/source/flsupport.h
parent83ff55addd23a3536ed179b58498a95321ce0482 (diff)
""
svn path=/trunk/; revision=844
Diffstat (limited to 'externals/grill/flext/source/flsupport.h')
-rw-r--r--externals/grill/flext/source/flsupport.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/externals/grill/flext/source/flsupport.h b/externals/grill/flext/source/flsupport.h
index 99938676..bf37c355 100644
--- a/externals/grill/flext/source/flsupport.h
+++ b/externals/grill/flext/source/flsupport.h
@@ -224,6 +224,9 @@ public:
//! Copy a list of atoms
static t_atom *CopyList(int argc,const t_atom *argv);
+ //! Print an atom list
+ static bool PrintList(int argc,const t_atom *argv,char *buf,int bufsz);
+
//! Copy a memory region
static void CopyMem(void *dst,const void *src,int bytes);
//! Copy a sample array
@@ -532,7 +535,7 @@ public:
AtomList &Part(int offs,int len) { return (*this = GetPart(offs,len)); }
//! Represent as a string
- bool Print(char *buffer,int buflen) const;
+ bool Print(char *buffer,int buflen) const { return flext::PrintList(Count(),Atoms(),buffer,buflen); }
protected:
int cnt;