]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_binaryopinset.h
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_binaryopinset.h
index 2eca9519dacb46736fa9db0e93408f99fdcad4de..319336f4f45633c2d7f68eb4104b42928c6cad85 100644 (file)
@@ -5,33 +5,32 @@
 #include "math_nestinset.h"
 #include "math_nestinset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 /** An inset for multiplication
-    \author André Pönitz
+ *  \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS
  */
 class MathBinaryOpInset : public MathNestInset {
 public:
        ///
        explicit MathBinaryOpInset(char op);
        ///
-       MathInset * clone() const;
+       InsetBase * clone() const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void draw(PainterInfo &, int x, int y) const;
        ///
-       void write(MathWriteInfo & os) const;
+       void write(WriteStream & os) const;
        ///
-       void writeNormal(NormalStream &) const;
+       void normalize(NormalStream &) const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void metrics(MetricsInfo & st) const;
 private:
        ///
        int opwidth() const;
        ///
        char op_;
        ///
-       mutable MathMetricsInfo mi_;
+       mutable MetricsInfo mi_;
 };
 #endif