00001 00002 // GL_UpdaterStateVariables.h // 00004 00005 #ifndef GLUPDATERGLOBALVARIABLES_H 00006 #define GLUPDATERGLOBALVARIABLES_H 00007 00008 #include "StateVariables.h" 00009 00010 namespace X3DTK { 00011 namespace GL { 00012 00014 00015 class UpdaterStateVariables : public StateVariables 00016 { 00017 public: 00019 UpdaterStateVariables(); 00021 virtual ~UpdaterStateVariables(); 00022 00024 void setPath(SFString path); 00026 inline SFString getPath() const {return _path;}; 00027 00028 private: 00029 SFString _path; 00030 }; 00031 00032 } 00033 } 00034 00035 #endif