X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FVariables.h;h=7758696bbb2b25ffbe8216fb932af0bc2182f523;hb=848c89564fce9c4bfec79b915746dc6bc47abc3d;hp=c7c092a5c06d07853c15463bab34f84171b7cd10;hpb=65c6e5bed3996d5cefdfa6c325533edc0da1fcf0;p=lyx.git diff --git a/src/Variables.h b/src/Variables.h index c7c092a5c0..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-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 -#ifdef __GNUG__ -#pragma interface -#endif - -#include "LString.h" #include +namespace lyx { + + /// class Variables { public: - /// - void set(string const &, string const &); - /// - string const get(string const &) const; /// - bool isSet(string const & var) const; - /// - string const 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; + typedef std::map Vars; /// Vars vars_; }; + +} // namespace lyx + #endif