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: public:
typedef typename MESH_TYPE::VertexType VertexType; typedef typename MESH_TYPE::VertexType VertexType;
inline VertTmark(){}
VertTmark(){} inline VertTmark(MESH_TYPE *){}
VertTmark(MESH_TYPE *){} inline void UnMarkAll() const {}
void UnMarkAll(){} inline bool IsMarked(VertexType*) const { return false; }
bool IsMarked(VertexType*) { return false; } inline void Mark(VertexType*) const {}
void Mark(VertexType*){} inline void SetMesh(void * /*m=0*/) const {}
void SetMesh(void * /*m=0*/) {}
}; };
//**CLOSEST FUNCTION DEFINITION**// //**CLOSEST FUNCTION DEFINITION**//