]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_makeboxinset.C
more IU
[lyx.git] / src / mathed / math_makeboxinset.C
index 73feb414e4ad1974c759249edf4f1e15c84d1cdc..cf3325b329be3920507d5dcc0101eefc85c27f60 100644 (file)
 #include <config.h>
 
 #include "math_makeboxinset.h"
-#include "math_support.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
+#include "math_support.h"
+
+#include "support/std_ostream.h"
 
 using std::auto_ptr;
 
@@ -79,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) << ")";
+}