X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FVariables.h;h=7758696bbb2b25ffbe8216fb932af0bc2182f523;hb=848c89564fce9c4bfec79b915746dc6bc47abc3d;hp=617a740785f33ae3b4e7c140573c3861cff78cfe;hpb=d59d3eb51af11e2146ac95ec58fc5677ea35386e;p=lyx.git diff --git a/src/Variables.h b/src/Variables.h index 617a740785..7758696bbb 100644 --- a/src/Variables.h +++ b/src/Variables.h @@ -1,41 +1,43 @@ // -*- C++ -*- -/* This file is part of -* ====================================================== -* -* LyX, The Document Processor -* -* Copyright 1995 Matthias Ettrich -* Copyright 1995-2000 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 -#ifdef __GNUG__ -#pragma interface -#endif - -#include "LString.h" #include +namespace lyx { + + /// class Variables { public: - /// - void set(string const &, string const &); - /// - virtual string get(string const &) const; - /// - bool isset(string const & var) const; - /// - string expand(string const &) const; + /// + void set(std::string const &, std::string const &); + /// + std::string const get(std::string const &) const; + /// + bool isSet(std::string const & var) const; + /// + std::string const expand(std::string const &) const; private: - /// - typedef std::map Vars; - /// - Vars vars_; + /// + typedef std::map Vars; + /// + Vars vars_; }; + +} // namespace lyx + #endif