]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_casesinset.h
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / mathed / math_casesinset.h
index 6349656fea1ec94a622753ef66cde97e877bdaf6..cb93c6c41a088148f49aae40795941ad76226c4d 100644 (file)
@@ -1,4 +1,14 @@
 // -*- C++ -*-
+/**
+ * \file math_casesinset.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_CASESINSET_H
 #define MATH_CASESINSET_H
 
@@ -12,11 +22,9 @@ public:
        ///
        explicit MathCasesInset(row_type rows = 1u);
        ///
-       MathInset * clone() const;
-       ///
-       Dimension metrics(MetricsInfo & mi) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void draw(PainterInfo & pain, int x, int y) const;
+       void draw(PainterInfo & pi, int x, int y) const;
 
        ///
        void infoize(std::ostream & os) const;
@@ -28,6 +36,8 @@ public:
        void write(WriteStream & os) const;
        ///
        void validate(LaTeXFeatures & features) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
 #endif