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 00013 class GLScene; 00014 00016 00017 class GLUpdaterGLCoreVisitor : public GLCoreVisitor 00018 { 00019 public: 00021 GLUpdaterGLCoreVisitor(); 00023 virtual ~GLUpdaterGLCoreVisitor(); 00024 00026 virtual void enterX3DGLNode(X3DGLNode *N) const; 00027 00028 protected: 00029 GLUpdaterGlobalVariables *globalVariables; 00030 }; 00031 00032 } 00033 00034 #endif