From b05e5d1184eae31e3cea978d94275b623f550249 Mon Sep 17 00:00:00 2001 From: cignoni Date: Sun, 7 Jun 2009 08:55:44 +0000 Subject: [PATCH] Made public the default constructor of PerVertexAttributeHandle, PerFaceAttributeHandle. I hope that it was done private by mistake... --- vcg/complex/trimesh/base.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/vcg/complex/trimesh/base.h b/vcg/complex/trimesh/base.h index 27b85a5f..7607eb74 100644 --- a/vcg/complex/trimesh/base.h +++ b/vcg/complex/trimesh/base.h @@ -271,20 +271,23 @@ class TriMesh: public TriMeshEdgeHolder class PerVertexAttributeHandle: public AttributeHandle{ + public: PerVertexAttributeHandle():AttributeHandle(){} - public: PerVertexAttributeHandle( void *ah,const int & n):AttributeHandle(ah,n){}; + PerVertexAttributeHandle( void *ah,const int & n):AttributeHandle(ah,n){}; }; template class PerFaceAttributeHandle: public AttributeHandle{ + public: PerFaceAttributeHandle():AttributeHandle(){} - public: PerFaceAttributeHandle( void *ah,const int & n):AttributeHandle(ah,n){}; + PerFaceAttributeHandle( void *ah,const int & n):AttributeHandle(ah,n){}; }; template class PerEdgeAttributeHandle: public AttributeHandle{ + public: PerEdgeAttributeHandle():AttributeHandle(){} - public: PerEdgeAttributeHandle( void *ah,const int & n):AttributeHandle(ah,n){}; + PerEdgeAttributeHandle( void *ah,const int & n):AttributeHandle(ah,n){}; }; template