00001 00002 // GLUpdaterGlobalVariables.h // 00004 00005 #ifndef GLUPDATERGLOBALVARIABLES_H 00006 #define GLUPDATERGLOBALVARIABLES_H 00007 00008 #include "GlobalVariables.h" 00009 00010 namespace X3DTK { 00011 00013 00014 class GLUpdaterGlobalVariables : public GlobalVariables 00015 { 00016 public: 00018 GLUpdaterGlobalVariables(); 00020 virtual ~GLUpdaterGlobalVariables(); 00021 00023 void setPath(SFString path); 00025 inline SFString getPath() const {return _path;}; 00026 00027 private: 00028 SFString _path; 00029 }; 00030 00031 } 00032 00033 #endif