]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_lefteqninset.h
Get rid of lyxstring, remove usage of STRCONV.
[lyx.git] / src / mathed / math_lefteqninset.h
index 0956310561c7386f77d0e66906d834bc5a012eba..0b7cbd199a1b3c5392650211b4874c2c04a1a473 100644 (file)
@@ -1,12 +1,19 @@
 // -*- C++ -*-
+/**
+ * \file math_lefteqninset.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATH_LEFTEQNINSET_H
 #define MATH_LEFTEQNINSET_H
 
 #include "math_nestinset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 /// Support for LaTeX's \\lefteqn command
 
@@ -15,14 +22,14 @@ public:
        ///
        MathLefteqnInset();
        ///
-       MathInset * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       void draw(MathPainterInfo &, int x, int y) const;
+       string name() 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;
+       void infoize(std::ostream & os) const;
 };
 #endif