]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotable.h
mathed uglyfication
[lyx.git] / src / mathed / math_macrotable.h
index 8a6b191e4e1602ab336af568dc7e29555905c601..b1433964c91dc2748acf82b5fd84d26b4dec3948 100644 (file)
 #ifndef MATH_MACROTABLE_H
 #define MATH_MACROTABLE_H
 
-#include <map>
-#include "LString.h"
 #include "math_atom.h"
 
+#include <map>
+#include <string>
+
 
 class MathMacroTable {
 public:
        ///
        static void create(MathAtom const &);
        ///
-       static MathAtom & provide(string const & name);
+       static MathAtom & provide(std::string const & name);
        ///
-       static bool has(string const & name);
+       static bool has(std::string const & name);
        ///
        static void dump();
 private:
        ///
-       typedef std::map<string, MathAtom> table_type;
+       typedef std::map<std::string, MathAtom> table_type;
        //
        static table_type macro_table;
 };