]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_tabularinset.h
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / mathed / math_tabularinset.h
index 741aa4a2b8d63ef8a9ccb4cd8f7f4c7c6810a650..e2476d246e5d6c44c64445777cf4674003bdebc0 100644 (file)
 class MathTabularInset : public MathGridInset {
 public:
        ///
-       MathTabularInset(string const &, int m, int n);
+       MathTabularInset(std::string const &, int m, int n);
        ///
-       MathTabularInset(string const &, int m, int n,
-               char valign, string const & halign);
+       MathTabularInset(std::string const &, int m, int n,
+               char valign, std::string const & halign);
        ///
-       MathTabularInset(string const &, char valign, string const & halign);
-       ///
-       virtual std::auto_ptr<InsetBase> clone() const;
+       MathTabularInset(std::string const &, char valign, std::string const & halign);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -44,8 +42,9 @@ public:
        void maple(MapleStream &) const;
 
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
        ///
-       string name_;
+       std::string name_;
 };
 
 #endif