00001 #ifndef X3DTK_GL_UPDATERGLCOREVISITOR_H 00002 #define X3DTK_GL_UPDATERGLCOREVISITOR_H 00003 00004 #include "GL_CoreVisitor.h" 00005 #include "GL_UpdaterStateVariables.h" 00006 00007 namespace X3DTK { 00008 namespace GL { 00009 00010 class Scene; 00011 00018 class UpdaterCoreVisitor : public CoreVisitor 00019 { 00020 public: 00022 UpdaterCoreVisitor(); 00024 virtual ~UpdaterCoreVisitor(); 00025 00027 virtual void enterScene(Scene *S) const; 00029 virtual void enterX3DNode(X3DNode *N) const; 00030 00031 protected: 00032 UpdaterStateVariables *stateVariables; 00033 }; 00034 00035 } 00036 } 00037 00038 #endif