X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_exfuncinset.h;h=45692fe81c2f21ebabeb9a0415f4ad2a395e9dfd;hb=cd19a0b33bcc87b46c3567928d85a4c724f49db5;hp=5144bb6825ec33593df031c5f23caa0eb8646557;hpb=9921635d78cc2c1c304584dc8d18a7e83488ed1b;p=lyx.git diff --git a/src/mathed/math_exfuncinset.h b/src/mathed/math_exfuncinset.h index 5144bb6825..45692fe81c 100644 --- a/src/mathed/math_exfuncinset.h +++ b/src/mathed/math_exfuncinset.h @@ -10,24 +10,31 @@ class MathExFuncInset : public MathNestInset { public: /// - MathExFuncInset(string const & name, MathArray const & arg); + explicit MathExFuncInset(string const & name); + /// + MathExFuncInset(string const & name, MathArray const & ar); /// MathInset * clone() const; /// - void write(WriteStream & os) const; + void metrics(MathMetricsInfo & st) const; + /// + void draw(MathPainterInfo &, int x, int y) const; + /// void normalize(NormalStream &) const; /// - void metrics(MathMetricsInfo const & st) const; + void maplize(MapleStream &) const; /// - void draw(Painter &, int x, int y) const; + void mathematicize(MathematicaStream &) const; + /// + void mathmlize(MathMLStream &) const; /// void octavize(OctaveStream &) const; + /// + void write(WriteStream & os) const; private: /// string const name_; - /// - mutable MathMetricsInfo mi_; }; #endif