]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_makeboxinset.C
mathed uglyfication
[lyx.git] / src / mathed / math_makeboxinset.C
index 40bf9557bde42f45a2e6841329a8a1aa86e86236..cf3325b329be3920507d5dcc0101eefc85c27f60 100644 (file)
@@ -1,15 +1,23 @@
-#include <config.h>
+/**
+ * \file math_makeboxinset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Ling Li
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include <config.h>
 
 #include "math_makeboxinset.h"
-#include "math_support.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "math_streamstr.h"
-#include "frontends/Painter.h"
+#include "math_support.h"
+
+#include "support/std_ostream.h"
 
+using std::auto_ptr;
 
 
 MathMakeboxInset::MathMakeboxInset()
@@ -17,9 +25,9 @@ MathMakeboxInset::MathMakeboxInset()
 {}
 
 
-InsetBase * MathMakeboxInset::clone() const
+auto_ptr<InsetBase> MathMakeboxInset::clone() const
 {
-       return new MathMakeboxInset(*this);
+       return auto_ptr<InsetBase>(new MathMakeboxInset(*this));
 }
 
 
@@ -74,3 +82,10 @@ void MathMakeboxInset::normalize(NormalStream & os) const
 {
        os << "[makebox " << cell(0) << ' ' << cell(1) << ' ' << cell(2) << ']';
 }
+
+
+void MathMakeboxInset::infoize(std::ostream & os) const
+{
+       os << "Makebox (width: " << cell(0)
+           << " pos: " << cell(1) << ")";
+}