added some const and inline keywords

This commit is contained in:
Paolo Cignoni 2009-11-30 10:32:37 +00:00
parent a209a9b890
commit a89b2ace77
1 changed files with 6 additions and 7 deletions

View File

@ -167,13 +167,12 @@ namespace vcg {
{
public:
typedef typename MESH_TYPE::VertexType VertexType;
VertTmark(){}
VertTmark(MESH_TYPE *){}
void UnMarkAll(){}
bool IsMarked(VertexType*) { return false; }
void Mark(VertexType*){}
void SetMesh(void * /*m=0*/) {}
inline VertTmark(){}
inline VertTmark(MESH_TYPE *){}
inline void UnMarkAll() const {}
inline bool IsMarked(VertexType*) const { return false; }
inline void Mark(VertexType*) const {}
inline void SetMesh(void * /*m=0*/) const {}
};
//**CLOSEST FUNCTION DEFINITION**//