From be32d9ab13edc1fbc9528a0efe80041744ec4bb3 Mon Sep 17 00:00:00 2001 From: ganovelli Date: Mon, 4 Dec 2006 11:11:07 +0000 Subject: [PATCH] add const to IsEnabledAttribute --- vcg/container/vector_occ.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/vcg/container/vector_occ.h b/vcg/container/vector_occ.h index 0c2ec9b2..659de935 100644 --- a/vcg/container/vector_occ.h +++ b/vcg/container/vector_occ.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.3 2006/12/03 18:01:01 ganovelli +versione compliant vs2005 + Revision 1.2 2006/06/08 20:28:38 ganovelli Corretto IsEnabledAttribute @@ -87,11 +90,11 @@ public: attributes.push_back(cat); } - /// this function disable the use of an optional attribute (see...) + /// this function returns true if the attribute in the template parameter is enabled /// Note: once an attribute is disabled, its data is lost (the memory freed) template - bool IsEnabledAttribute(){ - std::list < CATBase * >::iterator ia; + bool IsEnabledAttribute() const{ + std::list < CATBase * >::const_iterator ia; for(ia = attributes.begin(); ia != attributes.end(); ++ia) if((*ia)->Id() == CAT::Id()) return true;