From 24327b218c6b3fe1cbdbd3852e9433e81b201de6 Mon Sep 17 00:00:00 2001 From: dibenedetto Date: Sun, 28 Jun 2009 22:39:57 +0000 Subject: [PATCH] added HasColorOcf(). --- vcg/simplex/vertex/component.h | 1 + 1 file changed, 1 insertion(+) diff --git a/vcg/simplex/vertex/component.h b/vcg/simplex/vertex/component.h index 9c22d819..35e2353d 100644 --- a/vcg/simplex/vertex/component.h +++ b/vcg/simplex/vertex/component.h @@ -313,6 +313,7 @@ public: template < class LeftV> void ImportLocal(const LeftV & left ) { T::ImportLocal( left); } static bool HasColor() { return false; } + static bool HasColorOcf() { return false; } static void Name(std::vector & name){T::Name(name);} };