]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotable.h
preview as preview can...
[lyx.git] / src / mathed / math_macrotable.h
index 098a85c1480970a891d854ff75ad45cbb04b2257..ab377190581e041ca6d1fa1f099721c6a36340d0 100644 (file)
@@ -16,7 +16,7 @@ class MathArray;
 struct MathMacroTable {
 public:
        ///
-       static void create(string const &, int, string const &);
+       static void create(string const &, int);
        ///
        static void create(string const &, int, MathArray const &, MathArray const &);
        ///
@@ -25,13 +25,15 @@ public:
        static bool has(string const &);
        ///
        static void builtinMacros();
+       ///
+       static void dump();
 private:
+       /// create internal macros (like \longrightarrow...)
+       static void define(string const & display);
+
        ///
        typedef std::map<string, MathAtom> table_type;
        //
        static table_type macro_table;
-public:
-       ///
-       static void dump();
 };
 #endif