X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathNumber.h;h=68d08bd31598b37c5feded4a751119be9b513e91;hb=2de30c62f8d671a8c8d4d52a6a7310e2c5ca84de;hp=d6ccbb0d204eecd09fb54f29112a8c0fb0cabc12;hpb=de6418f37765fe452f135f96dee6d49897bff215;p=lyx.git diff --git a/src/mathed/InsetMathNumber.h b/src/mathed/InsetMathNumber.h index d6ccbb0d20..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,12 +14,12 @@ #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: @@ -45,14 +45,19 @@ public: /// 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 docstring str_; }; } // namespace lyx + #endif