rewrote VertTmark to have a reasonable dummy behaviour (it is useless...)

This commit is contained in:
Paolo Cignoni 2009-01-16 16:15:13 +00:00
parent f1336a0085
commit 4b1be10671
1 changed files with 11 additions and 2 deletions

View File

@ -158,8 +158,17 @@ namespace vcg {
{};
template <class MESH_TYPE>
class VertTmark:public Tmark<MESH_TYPE,typename MESH_TYPE::VertexType>
{};
class VertTmark
{
public:
typedef typename MESH_TYPE::VertexType VertexType;
VertTmark(){}
void UnMarkAll(){}
bool IsMarked(VertexType*) { return false; }
void Mark(VertexType*){}
void SetMesh(void *m=0) {}
};
//**CLOSEST FUNCTION DEFINITION**//