]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_stackrelinset.h
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_stackrelinset.h
index 3de330a50f9b3f02dbaef996f0402f73c776c9fe..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(std::ostream &, bool fragile) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void writeNormal(std::ostream &) const;
+       void draw(PainterInfo & pi, int x, int y) const;
+
        ///
-       void metrics(MathStyles st) const;
+       void write(WriteStream & os) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void normalize(NormalStream &) const;
 };
 
 #endif