00001 00002 // GLCreatorTexturingVisitor.h // 00004 00005 #ifndef GLCREATORTexturingVISITOR_H 00006 #define GLCREATORTexturingVISITOR_H 00007 00008 #include "TexturingVisitor.h" 00009 #include "GLCreatorGlobalVariables.h" 00010 00011 namespace X3DTK { 00012 00013 class ImageTexture; 00014 00016 00017 class GLCreatorTexturingVisitor : public TexturingVisitor 00018 { 00019 public: 00021 GLCreatorTexturingVisitor(); 00023 virtual ~GLCreatorTexturingVisitor(); 00024 00026 virtual void enterImageTexture(ImageTexture *I) const; 00027 00028 protected: 00029 GLCreatorGlobalVariables *globalVariables; 00030 }; 00031 00032 } 00033 00034 #endif