X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_splitinset.C;h=83a9caf3b38e7aa6cc6ff56506c8e55fe3b83779;hb=b447408de232872fef1537fca542abc23702d572;hp=9fb25c670b9fb48744fc24ecc3107ac9334be58c;hpb=53274e31ec1cc715c0b48921ee67818790c2e99a;p=lyx.git diff --git a/src/mathed/math_splitinset.C b/src/mathed/math_splitinset.C index 9fb25c670b..83a9caf3b3 100644 --- a/src/mathed/math_splitinset.C +++ b/src/mathed/math_splitinset.C @@ -1,12 +1,25 @@ -#ifdef __GNUG__ -#pragma implementation -#endif +/** + * \file math_splitinset.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 #include "math_splitinset.h" +#include "math_data.h" #include "math_mathmlstream.h" #include "math_streamstr.h" +using std::string; +using std::auto_ptr; + + MathSplitInset::MathSplitInset(string const & name) : MathGridInset(1, 1), name_(name) { @@ -14,9 +27,9 @@ MathSplitInset::MathSplitInset(string const & name) } -MathInset * MathSplitInset::clone() const +auto_ptr MathSplitInset::clone() const { - return new MathSplitInset(*this); + return auto_ptr(new MathSplitInset(*this)); }