]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_arrayinset.h
more IU
[lyx.git] / src / mathed / math_arrayinset.h
index 818ac49b4d57d14b2fbb97ee992d8550013301d6..6b15ed72b49be908e7fa4b5ed498f98dda945dcd 100644 (file)
 class MathArrayInset : public MathGridInset {
 public:
        ///
-       MathArrayInset(string const &, int m, int n);
+       MathArrayInset(std::string const &, int m, int n);
        ///
-       MathArrayInset(string const &, int m, int n,
-               char valign, string const & halign);
+       MathArrayInset(std::string const &, int m, int n,
+               char valign, std::string const & halign);
        ///
-       MathArrayInset(string const &, char valign, string const & halign);
+       MathArrayInset(std::string const &, char valign, std::string const & halign);
        /// convienience constructor from whitespace/newline seperated data
-       MathArrayInset(string const &, string const & str);
+       MathArrayInset(std::string const &, std::string const & str);
        ///
        virtual std::auto_ptr<InsetBase> clone() const;
        ///
@@ -49,7 +49,7 @@ public:
 
 private:
        ///
-       string name_;
+       std::string name_;
 };
 
 #endif