]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_arrayinset.h
macro rework
[lyx.git] / src / mathed / math_arrayinset.h
index 818ac49b4d57d14b2fbb97ee992d8550013301d6..dbd9fe3bc035b5aa70429a703d351c8c8375ef49 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;
+       std::auto_ptr<InsetBase> clone() const;
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -49,7 +49,7 @@ public:
 
 private:
        ///
-       string name_;
+       std::string name_;
 };
 
 #endif