lyx_mirror/src/mathed/math_macrotable.h

39 lines
684 B
C
Raw Normal View History

// -*- 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<EFBFBD> P<EFBFBD>nitz
*
* Full author contact details are available in file CREDITS.
*/
#ifndef MATH_MACROTABLE_H
#define MATH_MACROTABLE_H
#include "math_atom.h"
#include <map>
#include <string>
class MathMacroTable {
public:
///
static void create(MathAtom const &);
///
static MathAtom & provide(std::string const & name);
///
static bool has(std::string const & name);
///
static void dump();
private:
///
typedef std::map<std::string, MathAtom> table_type;
//
static table_type macro_table;
};
#endif