MathML for MathCases.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32715 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-12-31 21:01:00 +00:00
parent 14001c49fe
commit f621c97411
2 changed files with 9 additions and 0 deletions

View File

@ -143,6 +143,13 @@ void InsetMathCases::maple(MapleStream & os) const
} }
void InsetMathCases::mathmlize(MathStream & ms) const
{
ms << "<mo form='prefix' fence='true' stretchy='true' symmetric='true'>{</mo>";
InsetMathGrid::mathmlize(ms);
}
void InsetMathCases::infoize(odocstream & os) const void InsetMathCases::infoize(odocstream & os) const
{ {
os << "Cases "; os << "Cases ";

View File

@ -43,6 +43,8 @@ public:
/// ///
void maple(MapleStream &) const; void maple(MapleStream &) const;
/// ///
void mathmlize(MathStream &) const;
///
void write(WriteStream & os) const; void write(WriteStream & os) const;
/// ///
void validate(LaTeXFeatures & features) const; void validate(LaTeXFeatures & features) const;