]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathRoot.h
last commit was incomplete... not sure how I managed this..
[lyx.git] / src / mathed / InsetMathRoot.h
index 419a26cd19fb1c23a21f77888a2d5f309cecfc64..7c40deb27ce5195d9f1ef4a333dd52429e759cc7 100644 (file)
 #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<InsetBase> doClone() const;
+       virtual Inset * clone() const;
 };
 
+
+
+} // namespace lyx
 #endif