]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotable.h
Add In nsetOld * argument to updateInset to rebreak the correct par.
[lyx.git] / src / mathed / math_macrotable.h
index 3400bf915e8fdbb4c2e227bb6eef3d92f25342ec..8a6b191e4e1602ab336af568dc7e29555905c601 100644 (file)
@@ -1,4 +1,14 @@
 // -*- 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 "LString.h"
 #include "math_atom.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-class MathArray;
 
-///
-struct MathMacroTable {
+class MathMacroTable {
 public:
        ///
-       static void create(string const &, int);
-       ///
-       static void create(string const &, int, MathArray const &, MathArray const &);
+       static void create(MathAtom const &);
        ///
-       static MathAtom & provide(string const &);
+       static MathAtom & provide(string const & name);
        ///
-       static bool has(string const &);
-       ///
-       static void builtinMacros();
+       static bool has(string const & name);
        ///
        static void dump();
 private:
-       /// create internal macros (like \longrightarrow...)
-       static void create(string const &, int, string const &);
-
        ///
        typedef std::map<string, MathAtom> table_type;
        //
        static table_type macro_table;
 };
+
 #endif