00001 00002 // BboxUpdaterCoreVisitor.h // 00004 00005 #ifndef BBOXUPDATERCOREVISITOR_H 00006 #define BBOXUPDATERCOREVISITOR_H 00007 00008 #include "CoreVisitor.h" 00009 #include "BboxUpdaterGlobalVariables.h" 00010 00011 namespace X3DTK { 00012 00013 class X3DNode; 00014 class Scene; 00015 00017 00018 class BboxUpdaterCoreVisitor : public CoreVisitor 00019 { 00020 public: 00022 BboxUpdaterCoreVisitor(); 00024 virtual ~BboxUpdaterCoreVisitor(); 00025 00026 00028 virtual bool walkOnX3DNode(X3DNode *N, SFNode Child) const; 00029 00031 virtual void leaveScene(Scene *S) const; 00032 00033 protected: 00034 BboxUpdaterGlobalVariables *globalVariables; 00035 }; 00036 00037 } 00038 00039 #endif