]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_stackrelinset.h
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_stackrelinset.h
index e1122bfa816a0af08bde9d35fc48a64aa3d8fcb5..94e5a1e960024442b780f08603bdd0faded902f8 100644 (file)
@@ -4,27 +4,27 @@
 
 #include "math_fracbase.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-/** Stackrel objects 
-    \author André Pönitz
+/** Stackrel objects
+ *  \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS
  */
 class MathStackrelInset : public MathFracbaseInset {
 public:
        ///
        MathStackrelInset();
        ///
-       MathInset * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       void write(MathWriteInfo & os) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void writeNormal(NormalStream &) const;
+       void draw(PainterInfo & pi, int x, int y) const;
+
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void write(WriteStream & os) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void normalize(NormalStream &) const;
 };
 
 #endif