00001 00002 00003 00005 00006 00011 00016 00021 // GLUpdaterGLCoreVisitor.h // 00023 00024 #ifndef GLUPDATERGLCOREVISITOR_H 00025 #define GLUPDATERGLCOREVISITOR_H 00026 00027 #include "GLCoreVisitor.h" 00028 #include "GLUpdaterGlobalVariables.h" 00029 00030 namespace X3DTK { 00031 namespace GL { 00032 00034 00035 class UpdaterCoreVisitor : public CoreVisitor 00036 { 00037 public: 00039 UpdaterCoreVisitor(); 00041 virtual ~UpdaterCoreVisitor(); 00042 00044 virtual void enterX3DNode(X3DNode *N) const; 00045 00046 protected: 00047 UpdaterGlobalVariables *globalVariables; 00048 }; 00049 00050 } 00051 } 00052 00053 #endif