]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_envinset.h
Compile fix gcc 2.95 + stlport
[lyx.git] / src / mathed / math_envinset.h
index aa019cde9d999fe6ae693cbca17d466d65dc0348..27bc2365d2906a4de59ea659f477b5d8cb670ea2 100644 (file)
@@ -1,21 +1,27 @@
 // -*- C++ -*-
+/**
+ * \file math_envinset.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_ENVINSET_H
 #define MATH_ENVINSET_H
 
 #include "math_nestinset.h"
-#include "metricsinfo.h"
 
+#include <string>
 
-/** Environtments á la \begin{something}...\end{something}
- *  \author André Pönitz
- *
- * Full author contact details are available in file CREDITS
-*/
 
+/// Environtments á la \begin{something}...\end{something}
 class MathEnvInset : public MathNestInset {
 public:
        ///
-       MathEnvInset(string const & name_);
+       MathEnvInset(std::string const & name_);
        ///
        virtual std::auto_ptr<InsetBase> clone() const;
        ///
@@ -31,7 +37,7 @@ public:
 
 private:
        /// name of that environment
-       string name_;
+       std::string name_;
 };
 
 #endif