]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_frameboxinset.C
mathed uglyfication
[lyx.git] / src / mathed / math_frameboxinset.C
index 30b386fd2d9b83af6edb839e817288e8dacb42ac..d1cf3afb178a78f5402f455f5ad1e4ba96e2a1bb 100644 (file)
@@ -1,20 +1,33 @@
+/**
+ * \file math_frameboxinset.C
+ * 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.
+ */
+
 #include <config.h>
 
 #include "math_frameboxinset.h"
-#include "math_support.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "math_streamstr.h"
+#include "math_support.h"
+#include "LColor.h"
 #include "frontends/Painter.h"
 
+using std::auto_ptr;
+
 
 MathFrameboxInset::MathFrameboxInset()
        : MathNestInset(3)
 {}
 
 
-InsetBase * MathFrameboxInset::clone() const
+auto_ptr<InsetBase> MathFrameboxInset::clone() const
 {
-       return new MathFrameboxInset(*this);
+       return auto_ptr<InsetBase>(new MathFrameboxInset(*this));
 }