X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FVariables.h;h=5a06b64347ba5d5558a1f3ef8d8574b30032bbcc;hb=b9963e1a57135c3e2ab128a9ec4300f0e4886992;hp=de9b1c514a3eaf7f40de46d11c17f653fdaa187f;hpb=99d1627a471b92f403598d03dfc861ddc3c11be0;p=lyx.git diff --git a/src/Variables.h b/src/Variables.h index de9b1c514a..5a06b64347 100644 --- a/src/Variables.h +++ b/src/Variables.h @@ -1,18 +1,18 @@ // -*- C++ -*- -/* This file is part of -* ====================================================== -* -* LyX, The Document Processor -* -* Copyright 1995 Matthias Ettrich -* Copyright 1995-2001 the LyX Team. -* -* ====================================================== */ +/** + * \file Variables.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author Lars Gullik Bjønnes + * \author Jean-Marc Lasgouttes + * + * Full author contact details are available in file CREDITS. + */ #ifndef VARIABLES_H #define VARIABLES_H -#include "LString.h" #include @@ -20,16 +20,16 @@ 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_; };