00001 00002 // GLRendererGLGroupingVisitor.h // 00004 00005 #ifndef GLRENDERERGLGROUPINGVISITOR_H 00006 #define GLRENDERERGLGROUPINGVISITOR_H 00007 00008 #include "GLGroupingVisitor.h" 00009 #include "GLRendererGlobalVariables.h" 00010 00011 namespace X3DTK { 00012 namespace GL { 00013 00014 class Group; 00015 class StaticGroup; 00016 class Transform; 00017 00019 00020 class RendererGroupingVisitor : public GroupingVisitor 00021 { 00022 public: 00024 RendererGroupingVisitor(); 00026 virtual ~RendererGroupingVisitor(); 00027 00029 virtual void leaveTransform(Transform *G) const; 00030 00031 protected: 00032 RendererGlobalVariables *globalVariables; 00033 }; 00034 00035 } 00036 } 00037 00038 #endif