]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDelim.h
* InsetMathHull:
[lyx.git] / src / mathed / InsetMathDelim.h
index 03f883526878b7a3a1ee88897351ea6e4e4da0ce..84696316ef08ce0f68654bb95e000e6e99d31202 100644 (file)
@@ -24,9 +24,9 @@ namespace lyx {
 class InsetMathDelim : public InsetMathNest {
 public:
        ///
-       InsetMathDelim(std::string const & left, std::string const & right);
+       InsetMathDelim(docstring const & left, docstring const & right);
        ///
-       InsetMathDelim(std::string const & left, std::string const & right, MathArray const &);
+       InsetMathDelim(docstring const & left, docstring const & right, MathData const &);
        ///
        InsetMathDelim * asDelimInset() { return this; }
        ///
@@ -55,15 +55,15 @@ public:
        ///
        void mathematica(MathematicaStream &) const;
        ///
-       void mathmlize(MathMLStream &) const;
+       void mathmlize(MathStream &) const;
        ///
        void octave(OctaveStream &) const;
        ///
-       std::string left_;
+       docstring left_;
        ///
-       std::string right_;
+       docstring right_;
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
        ///
        mutable int dw_;
 };