00001 00002 // MeshAlgoFunctions.h // 00004 00005 #ifndef MESHALGOFUNCTIONS_H 00006 #define MESHALGOFUNCTIONS_H 00007 00008 namespace X3DTK { 00009 namespace Mesh { 00010 00013 00014 template<class T, class M> 00015 void start(T *, M *) {}; 00016 00018 template<class T, class F, class M> 00019 void processNewFace(T *, F *, M *) {}; 00020 00023 00024 template<class T, class M> 00025 void end(T *, M *) {}; 00026 00027 } 00028 } 00029 00030 #endif