From 59e66762250fe61d570c5baf6c9ce6896a09e027 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Wed, 1 Jan 2003 04:36:59 +0000 Subject: "" svn path=/trunk/; revision=315 --- externals/grill/flext/source/flclass.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (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 208a37fd..87e0a154 100644 --- a/externals/grill/flext/source/flclass.h +++ b/externals/grill/flext/source/flclass.h @@ -2,7 +2,7 @@ flext - C++ layer for Max/MSP and pd (pure data) externals -Copyright (c) 2001,2002 Thomas Grill (xovo@gmx.net) +Copyright (c) 2001-2003 Thomas Grill (xovo@gmx.net) For information on usage and redistribution, and for a DISCLAIMER OF ALL WARRANTIES, see the file, "license.txt," in this distribution. @@ -20,6 +20,7 @@ WARRANTIES, see the file, "license.txt," in this distribution. #include "flbase.h" #include "flsupport.h" + #ifdef _MSC_VER #pragma warning(disable: 4786) #endif @@ -33,9 +34,6 @@ WARRANTIES, see the file, "license.txt," in this distribution. // === flext_base ================================================== -//class qmsg; -//class thr_entry; - /*! \brief Flext message only base object */ @@ -587,7 +585,8 @@ protected: enum { afl_getset = 0x01, afl_get = 0x00, afl_set = 0x01, - afl_bothexist = 0x02 + afl_bothexist = 0x02, + afl_save = 0x04 }; bool IsGet() const { return (flags&afl_getset) == afl_get; } @@ -657,6 +656,9 @@ private: itemarr *attrhead,*clattrhead; + attritem *FindAttr(const t_symbol *tag,bool get) const; + int ListAttr(AtomList &a) const; + static int CheckAttrib(int argc,const t_atom *argv); bool InitAttrib(int argc,const t_atom *argv); -- cgit v1.2.1