X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FVariables.h;h=e624a9b695e0920c98960e3eaba93e560144dfdb;hb=98c966c64594611e469313314abd1e59524adb4a;hp=5ffce6057a179d710094f773c7f37b301f031895;hpb=ab45a3ae914b295478724c1d80ca8ec84789e027;p=lyx.git diff --git a/src/Variables.h b/src/Variables.h index 5ffce6057a..e624a9b695 100644 --- a/src/Variables.h +++ b/src/Variables.h @@ -1,11 +1,11 @@ // -*- C++ -*- /* This file is part of -* ====================================================== -* +* ====================================================== +* * LyX, The Document Processor -* +* * Copyright 1995 Matthias Ettrich -* Copyright 1995-2000 the LyX Team. +* Copyright 1995-2001 the LyX Team. * * ====================================================== */ @@ -20,22 +20,22 @@ #include +/// 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(string const &, string const &); + /// + string const get(string const &) const; + /// + bool isSet(string const & var) const; + /// + string const expand(string const &) const; private: - // - typedef std::map Vars; - // - Vars vars_; + /// + typedef std::map Vars; + /// + Vars vars_; }; #endif