replace most &dquot;...&dquot; by <...>
[lyx.git] / src / Variables.h
blob5a06b64347ba5d5558a1f3ef8d8574b30032bbcc
1 // -*- C++ -*-
2 /**
3 * \file Variables.h
4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
7 * \author Lars Gullik Bjønnes
8 * \author Jean-Marc Lasgouttes
10 * Full author contact details are available in file CREDITS.
13 #ifndef VARIABLES_H
14 #define VARIABLES_H
16 #include <map>
19 ///
20 class Variables {
21 public:
22 ///
23 void set(std::string const &, std::string const &);
24 ///
25 std::string const get(std::string const &) const;
26 ///
27 bool isSet(std::string const & var) const;
28 ///
29 std::string const expand(std::string const &) const;
30 private:
31 ///
32 typedef std::map<std::string, std::string> Vars;
33 ///
34 Vars vars_;
37 #endif