00001 00002 // X3D_InlineLoaderCoreVisitor.h // 00004 00005 #ifndef INLINELOADERCOREVISITOR_H 00006 #define INLINELOADERCOREVISITOR_H 00007 00008 #include "X3D_CoreVisitor.h" 00009 #include "X3D_InlineLoaderStateVariables.h" 00010 00011 namespace X3DTK { 00012 namespace X3D { 00013 00014 class Scene; 00015 class X3DNode; 00016 00018 00019 class InlineLoaderCoreVisitor : public CoreVisitor 00020 { 00021 public: 00023 InlineLoaderCoreVisitor(); 00025 virtual ~InlineLoaderCoreVisitor(); 00026 00027 /* 00028 virtual void enterScene(Scene *S) const;*/ 00030 virtual void enterX3DNode(X3DNode *N) const; 00031 00032 /* 00033 virtual bool walkOnX3DNode(X3DNode *N, SFAbstractNode child) const;*/ 00034 00036 virtual void leaveX3DNode(X3DNode *N) const; 00037 00038 protected: 00039 InlineLoaderStateVariables *stateVariables; 00040 }; 00041 00042 } 00043 } 00044 00045 #endif