]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/math.C
Removed all redundant using directives from the source.
[lyx.git] / src / tex2lyx / math.C
index dca219677d39f3155f84f571f0160ad58e407210..3ca609eabd5b30f54f5ad639383a1504c20558b2 100644 (file)
@@ -1,29 +1,33 @@
-/** The .tex to .lyx converter
-    \author André Pönitz (2003)
+/**
+ * \file math.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.
  */
 
 // {[(
 
 #include <config.h>
 
-#include "Lsstream.h"
 #include "tex2lyx.h"
 
 #include <iostream>
-#include <string>
-#include <vector>
 
 using std::cerr;
 using std::endl;
+
 using std::ostream;
 using std::string;
-using std::vector;
 
 
 bool is_math_env(string const & name)
 {
        static char const * known_math_envs[] = { "equation", "equation*",
-       "eqnarray", "eqnarray*", "align", "align*", 0};
+       "eqnarray", "eqnarray*", "align", "align*", "gather", "gather*",
+       "multline", "multline*", 0};
 
        for (char const ** what = known_math_envs; *what; ++what)
                if (*what == name)