]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotable.h
more IU
[lyx.git] / src / mathed / math_macrotable.h
index 60e115ec7a51e2a076a6c3115387d90d3c74d6a5..b1433964c91dc2748acf82b5fd84d26b4dec3948 100644 (file)
@@ -1,30 +1,36 @@
 // -*- 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 <map>
-#include "LString.h"
 #include "math_atom.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+#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;
 };