From 21e2f111c461725446457f0d768a95b71c17c847 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Thu, 14 Aug 2003 02:32:51 +0000 Subject: "" svn path=/trunk/; revision=844 --- externals/grill/flext/source/flsupport.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'externals/grill/flext/source/flsupport.h') 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; -- cgit v1.2.1