00001 00002 // GLUpdaterGLCoreVisitor.h // 00004 00005 #ifndef GLUPDATERGLCOREVISITOR_H 00006 #define GLUPDATERGLCOREVISITOR_H 00007 00008 #include "GLCoreVisitor.h" 00009 #include "GLUpdaterGlobalVariables.h" 00010 00011 namespace X3DTK { 00012 namespace GL { 00013 00015 00016 class UpdaterCoreVisitor : public CoreVisitor 00017 { 00018 public: 00020 UpdaterCoreVisitor(); 00022 virtual ~UpdaterCoreVisitor(); 00023 00025 virtual void enterX3DNode(X3DNode *N) const; 00026 00027 protected: 00028 UpdaterGlobalVariables *globalVariables; 00029 }; 00030 00031 } 00032 } 00033 00034 #endif