00001 00002 00003 00005 00006 00011 00016 00021 // GLUpdater.h // 00023 00024 #ifndef GLUPDATER_H 00025 #define GLUPDATER_H 00026 00027 #include "X3DGLUpdater.h" 00028 #include "GLUpdaterGlobalVariables.h" 00029 #include "X3DGLNode.h" 00030 00031 namespace X3DTK { 00032 namespace GL { 00033 00034 class DFS; 00035 00037 00038 class Updater : public X3DUpdater 00039 { 00040 public: 00042 Updater(); 00044 virtual ~Updater(); 00045 00047 void setComponentVisitor(X3DComponentVisitor *component); 00048 00050 virtual void update(X3DNode *N); 00051 00052 protected: 00053 UpdaterGlobalVariables *globalVariables; 00054 DFS *dfs; 00055 }; 00056 00057 } 00058 } 00059 00060 #endif