00001 00002 // BboxUpdater.h // 00004 00005 #ifndef BBOXUPDATER_H 00006 #define BBOXUPDATER_H 00007 00008 #include "X3DBboxUpdater.h" 00009 #include "BboxUpdaterGlobalVariables.h" 00010 #include "DFS.h" 00011 00012 namespace X3DTK { 00013 namespace X3D { 00014 00016 00017 class BboxUpdater : public X3DBboxUpdater 00018 { 00019 public: 00021 BboxUpdater(); 00023 virtual ~BboxUpdater(); 00024 00025 void setComponentVisitor(X3DComponentVisitor *component); 00026 00027 virtual void update(SFNode N, bool staticProcessing = false); 00028 00029 protected: 00030 BboxUpdaterGlobalVariables *globalVariables; 00031 DFS *dfs; 00032 }; 00033 00034 } 00035 } 00036 00037 #endif