mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
44cd0fc9a1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7862 a592a061-630c-0410-9148-cb99ea01b6c8
38 lines
685 B
C++
38 lines
685 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \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
|
|
|
|
#include <map>
|
|
|
|
|
|
///
|
|
class Variables {
|
|
public:
|
|
///
|
|
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<std::string, std::string> Vars;
|
|
///
|
|
Vars vars_;
|
|
};
|
|
|
|
#endif
|