mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
c93e9dcbc5
further cosmetics git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2991 a592a061-630c-0410-9148-cb99ea01b6c8
32 lines
483 B
C
32 lines
483 B
C
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "math_splitinset.h"
|
|
#include "math_mathmlstream.h"
|
|
|
|
|
|
MathSplitInset::MathSplitInset(int n)
|
|
: MathGridInset(2, n)
|
|
{
|
|
setDefaults();
|
|
}
|
|
|
|
|
|
MathInset * MathSplitInset::clone() const
|
|
{
|
|
return new MathSplitInset(*this);
|
|
}
|
|
|
|
|
|
void MathSplitInset::write(WriteStream & os) const
|
|
{
|
|
if (os.fragile)
|
|
os << "\\protect";
|
|
os << "\\begin{split}";
|
|
MathGridInset::write(os);
|
|
if (os.fragile)
|
|
os << "\\protect";
|
|
os << "\\end{split}\n";
|
|
}
|