]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotable.C
more IU
[lyx.git] / src / mathed / math_macrotable.C
index 592906c74e683be9030d9fd6f0e0090abc2c5846..a0456960f9e1be832e89693adaab9a1d61aede90 100644 (file)
@@ -1,18 +1,22 @@
-#include <config.h>
-
-#include <iostream>
+/**
+ * \file math_macrotable.C
+ * 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.
+ */
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include <config.h>
 
 #include "math_macrotable.h"
-#include "math_macro.h"
 #include "math_macrotemplate.h"
-#include "math_parser.h"
-#include "math_mathmlstream.h"
 #include "debug.h"
-#include "math_support.h" // math_font_available
+
+
+using std::string;
+using std::endl;
 
 
 MathMacroTable::table_type MathMacroTable::macro_table;
@@ -21,13 +25,13 @@ MathMacroTable::table_type MathMacroTable::macro_table;
 void MathMacroTable::dump()
 {
 /*
-       lyxerr << "\n------------------------------------------\n";
+       lyxerr << "\n------------------------------------------" << endl;
        table_type::const_iterator it;
        for (it = macro_table.begin(); it != macro_table.end(); ++it)
                lyxerr << it->first
                        << " [" << it->second->asMacroTemplate()->nargs() << "] : "
-                       << it->second->cell(0) << "\n";
-       lyxerr << "------------------------------------------\n";
+                       << it->second->cell(0) << endl;
+       lyxerr << "------------------------------------------" << endl;
 */
 }
 
@@ -37,7 +41,7 @@ MathAtom & MathMacroTable::provide(string const & name)
        table_type::iterator pos = macro_table.find(name);
        if (pos == macro_table.end()) {
                lyxerr << "MathMacroTable::provideTemplate: no template with name '"
-                      << name << "' available.\n";
+                      << name << "' available." << endl;
        }
        return pos->second;
 }