00001 #ifndef X3DTK_GL_UPDATERSTATEVARIABLES_H 00002 #define X3DTK_GL_UPDATERSTATEVARIABLES_H 00003 00004 #include "StateVariables.h" 00005 00006 namespace X3DTK { 00007 namespace GL { 00008 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