]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_tabularinset.h
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_tabularinset.h
index 741aa4a2b8d63ef8a9ccb4cd8f7f4c7c6810a650..469983dde2f7a7468f88abe6fd404f2cbaddaeaa 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;
        ///
@@ -39,13 +37,16 @@ public:
        ///
        void write(WriteStream & os) const;
        ///
+       void infoize(std::ostream & os) const;
+       ///
        void normalize(NormalStream &) const;
        ///
        void maple(MapleStream &) const;
 
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
        ///
-       string name_;
+       std::string name_;
 };
 
 #endif