made public the self inspection member 'name' of the components. I do not know why it was not public in that case.

This commit is contained in:
Paolo Cignoni 2009-11-05 22:35:56 +00:00
parent 514358771b
commit 70ae4d5c50
1 changed files with 1 additions and 1 deletions

View File

@ -471,7 +471,7 @@ template <class T> class WedgeColor4f: public WedgeColor<vcg::Color4f, T> {
static void Name(std::vector<std::string> & name){name.push_back(std::string("WedgeColor4f"));T::Name(name);}
};
template <class T> class Color4b: public Color<vcg::Color4b, T> {
template <class T> class Color4b: public Color<vcg::Color4b, T> { public:
static void Name(std::vector<std::string> & name){name.push_back(std::string("Color4b"));T::Name(name);}
};