#ifndef MYGLBUILDERGEOMETRY3DVISITOR_H #define MYGLBUILDERGEOMETRY3DVISITOR_H #include namespace X3DTK { namespace X3D { class FCylinder; // My visitor for the Geometry3D component of the GLCreator module. class MyGLBuilderGeometry3DVisitor : public GLBuilderGeometry3DVisitor { public: // Constructor. MyGLBuilderGeometry3DVisitor(); // Enters an FCylinder. static void enterFCylinder(FCylinder *C); }; } } #endif