00001 00002 // GLUpdater.h // 00004 00005 #ifndef GLUPDATER_H 00006 #define GLUPDATER_H 00007 00008 #include "X3DGLUpdater.h" 00009 #include "GLUpdaterGlobalVariables.h" 00010 #include "DFS.h" 00011 00012 namespace X3DTK { 00013 00015 00016 class GLUpdater : public X3DGLUpdater 00017 { 00018 public: 00020 GLUpdater(); 00022 virtual ~GLUpdater(); 00023 00024 void setComponentVisitor(X3DComponentVisitor *component); 00025 00027 virtual void update(GLScene *S); 00028 00029 protected: 00030 GLUpdaterGlobalVariables *globalVariables; 00031 DFS *dfs; 00032 }; 00033 00034 } 00035 00036 #endif