From d6d1febfad6698f55f077b7dd94330a46da83886 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Mon, 18 Apr 2005 15:07:41 +0000 Subject: changed template parameter of TableMap fixed problems with symbol binding restructured TableMap type (doesn't own pointers any more) svn path=/trunk/; revision=2779 --- externals/grill/flext/source/flclass.h | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 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 cf11bdb8..bebd045f 100644 --- a/externals/grill/flext/source/flclass.h +++ b/externals/grill/flext/source/flclass.h @@ -659,7 +659,13 @@ protected: ~ItemSet(); }; */ - typedef TablePtrMapOwned ItemSet; + class ItemSet + :public TablePtrMap + { + public: + virtual ~ItemSet(); + virtual void clear(); + }; /*! This class holds hashed item entries \note not thread-safe! @@ -775,7 +781,13 @@ protected: ~AttrDataCont(); }; */ - typedef TablePtrMapOwned AttrDataCont; + class AttrDataCont + :public TablePtrMap + { + public: + virtual ~AttrDataCont(); + virtual void clear(); + }; // these outlet functions don't check for thread but send directly to the real-time system #if FLEXT_SYS == FLEXT_SYS_PD || FLEXT_SYS == FLEXT_SYS_MAX -- cgit v1.2.1