#ifndef MYGLBUILDERGEOMETRY3DVISITOR_H #define MYGLBUILDERGEOMETRY3DVISITOR_H #include namespace X3DTK { namespace X3D { class Icosahedron; // Visitor for the Geometry3D component of the GLBuilder processor. class MyGLBuilderGeometry3DVisitor : public GLBuilderGeometry3DVisitor { public: MyGLBuilderGeometry3DVisitor(); static void enterIcosahedron(Icosahedron *C); }; } } #endif