// -*- C++ -*- #ifndef MATH_MACROTABLE_H #define MATH_MACROTABLE_H #include #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 table_type; // static table_type macro_table; }; #endif