X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FVariables.h;h=5823fb3e6cdcb36be12baed316a780b6f2e41985;hb=2098f1d8c20d51e63e670bcdc9da8996068975bf;hp=b73b63a15605124192945e2f8197b09487c9599b;hpb=236ea81bc5c0ce7101c9460d1ee97b8f3c9be9df;p=lyx.git diff --git a/src/Variables.h b/src/Variables.h index b73b63a156..5823fb3e6c 100644 --- a/src/Variables.h +++ b/src/Variables.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author Lars Gullik Bjønnes + * \author Lars Gullik Bjønnes * \author Jean-Marc Lasgouttes * * Full author contact details are available in file CREDITS. @@ -13,26 +13,31 @@ #ifndef VARIABLES_H #define VARIABLES_H -#include "support/std_string.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