00001 00002 // GLCoreVisitor.h // 00004 00005 #ifndef GLCOREVISITOR_H 00006 #define GLCOREVISITOR_H 00007 00008 #include "X3DComponentVisitor.h" 00009 #include "X3DGLNode.h" 00010 00011 namespace X3DTK { 00012 00013 class NodeCreationProxy; 00014 00016 00017 class GLCoreVisitor : public X3DComponentVisitor 00018 { 00019 public: 00021 GLCoreVisitor(); 00023 virtual ~GLCoreVisitor(); 00024 00026 virtual void enterX3DGLNode(X3DGLNode *N) const; 00028 virtual bool walkOnX3DGLNode(X3DGLNode *N, SFNode child) const; 00030 virtual void leaveX3DGLNode(X3DGLNode *N) const; 00031 }; 00032 00033 } 00034 00035 #endif