mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
1f9e9cf517
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7574 a592a061-630c-0410-9148-cb99ea01b6c8
38 lines
671 B
C++
38 lines
671 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file math_macrotable.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef MATH_MACROTABLE_H
|
|
#define MATH_MACROTABLE_H
|
|
|
|
#include <map>
|
|
#include "LString.h"
|
|
#include "math_atom.h"
|
|
|
|
|
|
class MathMacroTable {
|
|
public:
|
|
///
|
|
static void create(MathAtom const &);
|
|
///
|
|
static MathAtom & provide(string const & name);
|
|
///
|
|
static bool has(string const & name);
|
|
///
|
|
static void dump();
|
|
private:
|
|
///
|
|
typedef std::map<string, MathAtom> table_type;
|
|
//
|
|
static table_type macro_table;
|
|
};
|
|
|
|
#endif
|