X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathDelim.h;h=3a09ede2f32bd509356bb2a518a02a07177d6a26;hb=63c193afeff44f6f4678fed1ea5083b8bc0664a2;hp=de7f11442b0f7962728f2165054a51831c30abd1;hpb=0facb603fefec1ecc927f77bcf6228ca1f035444;p=lyx.git diff --git a/src/mathed/InsetMathDelim.h b/src/mathed/InsetMathDelim.h index de7f11442b..3a09ede2f3 100644 --- a/src/mathed/InsetMathDelim.h +++ b/src/mathed/InsetMathDelim.h @@ -15,8 +15,6 @@ #include "InsetMathNest.h" -#include - namespace lyx { @@ -24,9 +22,10 @@ namespace lyx { class InsetMathDelim : public InsetMathNest { public: /// - InsetMathDelim(docstring const & left, docstring const & right); + InsetMathDelim(Buffer * buf, docstring const & left, docstring const & right); /// - InsetMathDelim(docstring const & left, docstring const & right, MathData const &); + InsetMathDelim(Buffer * buf, docstring const & left, docstring const & right, + MathData const &); /// InsetMathDelim * asDelimInset() { return this; } /// @@ -44,6 +43,8 @@ public: /// void draw(PainterInfo &, int x, int y) const; + /// + void validate(LaTeXFeatures & features) const; /// void write(WriteStream & os) const; /// write normalized content @@ -57,6 +58,8 @@ public: /// void mathmlize(MathStream &) const; /// + void htmlize(HtmlStream &) const; + /// void octave(OctaveStream &) const; /// InsetCode lyxCode() const { return MATH_DELIM_CODE; }