00001 00002 00003 00005 00006 00011 00016 00021 // GLRendererGLGroupingVisitor.h // 00023 00024 #ifndef GLRENDERERGLGROUPINGVISITOR_H 00025 #define GLRENDERERGLGROUPINGVISITOR_H 00026 00027 #include "GLGroupingVisitor.h" 00028 #include "GLRendererGlobalVariables.h" 00029 00030 namespace X3DTK { 00031 namespace GL { 00032 00033 class Group; 00034 class StaticGroup; 00035 class Transform; 00036 00038 00039 class RendererGroupingVisitor : public GroupingVisitor 00040 { 00041 public: 00043 RendererGroupingVisitor(); 00045 virtual ~RendererGroupingVisitor(); 00046 00048 virtual void leaveTransform(Transform *G) const; 00049 00050 protected: 00051 RendererGlobalVariables *globalVariables; 00052 }; 00053 00054 } 00055 } 00056 00057 #endif