]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotable.h
mathed uglyfication
[lyx.git] / src / mathed / math_macrotable.h
index d500b74645a26e963844cc3499f98fc022f3215c..b1433964c91dc2748acf82b5fd84d26b4dec3948 100644 (file)
 #ifndef MATH_MACROTABLE_H
 #define MATH_MACROTABLE_H
 
-#include <map>
-#include "support/std_string.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;
 };