00001 00002 00003 00005 00006 00011 00016 00021 // BboxUpdater.h // 00023 00024 #ifndef BBOXUPDATER_H 00025 #define BBOXUPDATER_H 00026 00027 #include "X3DBboxUpdater.h" 00028 #include "BboxUpdaterGlobalVariables.h" 00029 #include "DFS.h" 00030 00031 namespace X3DTK { 00032 namespace X3D { 00033 00035 00036 class BboxUpdater : public X3DBboxUpdater 00037 { 00038 public: 00040 BboxUpdater(); 00042 virtual ~BboxUpdater(); 00043 00044 void setComponentVisitor(X3DComponentVisitor *component); 00045 00046 virtual void update(SFNode N, bool staticProcessing = false); 00047 00048 protected: 00049 BboxUpdaterGlobalVariables *globalVariables; 00050 DFS *dfs; 00051 }; 00052 00053 } 00054 } 00055 00056 #endif