X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FVariables.h;h=7758696bbb2b25ffbe8216fb932af0bc2182f523;hb=da640391fc82fab25708a074d54ee4dce1fe26e7;hp=5ffce6057a179d710094f773c7f37b301f031895;hpb=ab45a3ae914b295478724c1d80ca8ec84789e027;p=lyx.git diff --git a/src/Variables.h b/src/Variables.h index 5ffce6057a..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: - virtual ~Variables() { }; - // - void set(string const &, string const &); - // - virtual string get(string const &) const; - // - bool isset(string const & var) const; - // - string expand(string) 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