X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathNumber.h;h=68d08bd31598b37c5feded4a751119be9b513e91;hb=5fdc577badb1cb133d6a0dc7d831bb1f82576adb;hp=5bd373c2e06e6e92546b9e1b518d5c9143a79322;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathNumber.h b/src/mathed/InsetMathNumber.h index 5bd373c2e0..68d08bd315 100644 --- a/src/mathed/InsetMathNumber.h +++ b/src/mathed/InsetMathNumber.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -14,20 +14,23 @@ #include "InsetMath.h" +#include "support/docstring.h" -/** Some inset that "is" a number - * mainly for math-extern + +namespace lyx { + +/** 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; } @@ -40,13 +43,21 @@ public: /// void mathematica(MathematicaStream &) const; /// - void mathmlize(MathMLStream &) const; + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; /// void write(WriteStream & os) const; + /// + InsetCode lyxCode() const { return MATH_NUMBER_CODE; } private: - virtual std::auto_ptr doClone() const; + virtual Inset * clone() const; /// the number as string - std::string str_; + docstring str_; }; + + +} // namespace lyx + #endif