]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathString.h
Properly fix bug 3258.
[lyx.git] / src / mathed / InsetMathString.h
index 50d92d6710b84b325f2830285cb3610bcfb366b4..ad0a22312ed43351d175062c3e178ccdcdcf3ed8 100644 (file)
@@ -15,6 +15,8 @@
 #include "InsetMath.h"
 
 
+namespace lyx {
+
 /** Some collection of chars with similar properties
  *  mainly for math-extern
  */
 class InsetMathString : public InsetMath {
 public:
        ///
-       explicit InsetMathString(std::string const & s);
+       explicit InsetMathString(docstring const & s);
        ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       bool metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       std::string str() const { return str_; }
+       docstring str() const { return str_; }
        ///
        InsetMathString * asStringInset() { return this; }
        ///
@@ -43,13 +45,16 @@ 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 std::auto_ptr<Inset> doClone() const;
        /// the string
-       std::string str_;
+       docstring str_;
 };
+
+} // namespace lyx
+
 #endif