]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotable.h
use stream-like syntax for LaTeX output
[lyx.git] / src / mathed / math_macrotable.h
index 2feaa00d5fe822126bb232342e926a9d82c6be9b..44f59c13576810346fca03c14855a52b861e7632 100644 (file)
@@ -4,34 +4,30 @@
 
 #include <map>
 #include "LString.h"
-#include "math_macrotemplate.h"
+#include "math_atom.h"
 
 #ifdef __GNUG__
 #pragma interface
 #endif
 
-
-class MathMacro;
-
+class MathArray;
 
 ///
 struct MathMacroTable {
 public:
        ///
-       static void insertTemplate(MathMacroTemplate const &);
-       ///
-       static MathMacroTemplate & provideTemplate(string const &);
+       static void create(string const &, int, string const &);
        ///
-       static bool hasTemplate(string const &);
+       static void create(string const &, int, MathArray const &);
        ///
-       static MathMacro * cloneTemplate(string const &);
+       static MathAtom & provide(string const &);
        ///
-       static void createTemplate(string const &, int, string const &);
+       static bool has(string const &);
        ///
        static void builtinMacros();
 private:
        ///
-       typedef std::map<string, MathMacroTemplate> table_type;
+       typedef std::map<string, MathAtom> table_type;
        //
        static table_type macro_table;
 public: