00001 00002 00003 00005 00006 00011 00016 00021 // MeshAlgoFunctions.h // 00023 00024 #ifndef MESHALGOFUNCTIONS_H 00025 #define MESHALGOFUNCTIONS_H 00026 00027 namespace X3DTK { 00028 namespace Mesh { 00029 00032 00033 template<class T, class M> 00034 void start(T *, M *) {}; 00035 00037 template<class T, class F, class M> 00038 void processNewFace(T *, F *, M *) {}; 00039 00042 00043 template<class T, class M> 00044 void end(T *, M *) {}; 00045 00046 } 00047 } 00048 00049 #endif