]> 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 e8366b16fe780d719f4fb2b2ad76093aaf997c90..27bc2365d2906a4de59ea659f477b5d8cb670ea2 100644 (file)
 
 #include "math_nestinset.h"
 
+#include <string>
+
 
 /// 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;
        ///
@@ -35,7 +37,7 @@ public:
 
 private:
        /// name of that environment
-       string name_;
+       std::string name_;
 };
 
 #endif