00001 00002 // GLCreatorCoreVisitor.h // 00004 00005 #ifndef GLCREATORCOREVISITOR_H 00006 #define GLCREATORCOREVISITOR_H 00007 00008 #include "CoreVisitor.h" 00009 #include "GLCreatorGlobalVariables.h" 00010 00011 namespace X3DTK { 00012 00013 class Scene; 00014 class X3DNode; 00015 00017 00018 class GLCreatorCoreVisitor : public CoreVisitor 00019 { 00020 public: 00022 GLCreatorCoreVisitor(); 00024 virtual ~GLCreatorCoreVisitor(); 00025 00027 virtual void enterScene(Scene *S) const; 00029 virtual void enterX3DNode(X3DNode *N) const; 00030 00032 virtual void leaveX3DNode(X3DNode *N) const; 00033 00034 protected: 00035 GLCreatorGlobalVariables *globalVariables; 00036 }; 00037 00038 } 00039 00040 #endif