]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_dotsinset.h
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_dotsinset.h
index d0187a0804e32ae49e0a239f600eee600d26c6d7..75d4d9c7810911e7b040a11caa0656ab09f1a08c 100644 (file)
@@ -4,9 +4,6 @@
 
 #include "math_diminset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 class latexkeys;
 
@@ -16,17 +13,15 @@ public:
        ///
        explicit MathDotsInset(latexkeys const * l);
        ///
-       MathInset * clone() const;
-       ///
-       void draw(MathPainterInfo &, int x, int y) const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       void write(WriteStream & os) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void normalize(NormalStream &) const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void metrics(MathMetricsInfo & st) const;
+       string name() const;
 protected:
-       /// cache for the thing's heigth
+       /// cache for the thing's height
        mutable int dh_;
        ///
        latexkeys const * key_;