X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FVariables.h;h=7758696bbb2b25ffbe8216fb932af0bc2182f523;hb=848c89564fce9c4bfec79b915746dc6bc47abc3d;hp=d8fa99086f2f01062f38c9f792d7fd4478fd964b;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/Variables.h b/src/Variables.h index d8fa99086f..7758696bbb 100644 --- a/src/Variables.h +++ b/src/Variables.h @@ -13,26 +13,31 @@ #ifndef VARIABLES_H #define VARIABLES_H -#include "LString.h" #include +namespace lyx { + + /// class Variables { public: /// - void set(string const &, string const &); + void set(std::string const &, std::string const &); /// - string const get(string const &) const; + std::string const get(std::string const &) const; /// - bool isSet(string const & var) const; + bool isSet(std::string const & var) const; /// - string const expand(string const &) const; + std::string const expand(std::string const &) const; private: /// - typedef std::map Vars; + typedef std::map Vars; /// Vars vars_; }; + +} // namespace lyx + #endif