From 70ae4d5c5079dbe1be39f681bccfc8011e6018fc Mon Sep 17 00:00:00 2001 From: cignoni Date: Thu, 5 Nov 2009 22:35:56 +0000 Subject: [PATCH] made public the self inspection member 'name' of the components. I do not know why it was not public in that case. --- vcg/simplex/face/component.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcg/simplex/face/component.h b/vcg/simplex/face/component.h index 23b76e35..58fc36f3 100644 --- a/vcg/simplex/face/component.h +++ b/vcg/simplex/face/component.h @@ -471,7 +471,7 @@ template class WedgeColor4f: public WedgeColor { static void Name(std::vector & name){name.push_back(std::string("WedgeColor4f"));T::Name(name);} }; -template class Color4b: public Color { +template class Color4b: public Color { public: static void Name(std::vector & name){name.push_back(std::string("Color4b"));T::Name(name);} };