]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathNumber.h
InsetMathHull.cpp: whitespace
[lyx.git] / src / mathed / InsetMathNumber.h
index 1580c5078c91128e177f956c91abc29a3bf3c38a..dc9d3cd84891a634fd23aceac2e0fc14c38d174b 100644 (file)
 
 #include "InsetMath.h"
 
+#include "support/docstring.h"
 
-namespace lyx {
 
+namespace lyx {
 
-/** Some inset that "is" a number
- *  mainly for math-extern
+/** Some inset that "is" a number mainly for math-extern
  */
 class InsetMathNumber : public InsetMath {
 public:
        ///
-       explicit InsetMathNumber(std::string const & s);
+       explicit InsetMathNumber(docstring const & s);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo &, int x, int y) const;
        ///
-       std::string str() const { return str_; }
+       docstring str() const { return str_; }
        ///
        InsetMathNumber * asNumberInset() { return this; }
 
@@ -43,16 +43,17 @@ public:
        ///
        void mathematica(MathematicaStream &) const;
        ///
-       void mathmlize(MathMLStream &) const;
+       void mathmlize(MathStream &) const;
        ///
        void write(WriteStream & os) const;
 
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
        /// the number as string
-       std::string str_;
+       docstring str_;
 };
 
 
 } // namespace lyx
+
 #endif