00001 #ifndef MYMESHBUILDERRENDERINGVISITOR_H 00002 #define MYMESHBUILDERRENDERINGVISITOR_H 00003 00004 #include <X3DTK/X3D/meshbuilder.h> 00005 #include "X3D_MyCoordinate.h" 00006 00007 namespace X3DTK { 00008 namespace X3D { 00009 00010 // Visitor for the Rendering component of the MyMeshBuilder processor. 00011 00012 template<class MData, class VData, class EData, class FData, bool readOnly> 00013 class MyMeshBuilderRenderingVisitor : public TemplateMeshBuilderRenderingVisitor<MData, VData, EData, FData, readOnly> 00014 { 00015 public: 00016 MyMeshBuilderRenderingVisitor(); 00017 00018 static void enterMyCoordinate(MyCoordinate *C); 00019 }; 00020 00021 } 00022 } 00023 00024 #include "X3D_MyMeshBuilderRenderingVisitor.inl" 00025 00026 #endif