X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathRoot.h;h=7c40deb27ce5195d9f1ef4a333dd52429e759cc7;hb=58ab972f714309aa87e7d956ceda00e18337875f;hp=419a26cd19fb1c23a21f77888a2d5f309cecfc64;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathRoot.h b/src/mathed/InsetMathRoot.h index 419a26cd19..7c40deb27c 100644 --- a/src/mathed/InsetMathRoot.h +++ b/src/mathed/InsetMathRoot.h @@ -16,13 +16,16 @@ #include "InsetMathNest.h" +namespace lyx { + + /// The general n-th root inset. class InsetMathRoot : public InsetMathNest { public: /// InsetMathRoot(); /// - bool idxUpDown(LCursor & cur, bool up) const; + bool idxUpDown(Cursor & cur, bool up) const; /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// @@ -33,13 +36,18 @@ public: /// void normalize(NormalStream &) const; /// - void mathmlize(MathMLStream &) const; + void mathmlize(MathStream &) const; /// void maple(MapleStream &) const; /// + void mathematica(MathematicaStream &) const; + /// void octave(OctaveStream &) const; private: - virtual std::auto_ptr doClone() const; + virtual Inset * clone() const; }; + + +} // namespace lyx #endif