X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathExInt.h;h=5ed5a4ca8790a9a117de745bfbe474d0401a8718;hb=98fb638d61d38df1443339de4e8ba58c7c81784a;hp=3f1b821c7219133bd97640be5ae0c281931587fe;hpb=6c300f72a217722652dc27db9108e1050028979c;p=lyx.git diff --git a/src/mathed/InsetMathExInt.h b/src/mathed/InsetMathExInt.h index 3f1b821c72..5ed5a4ca87 100644 --- a/src/mathed/InsetMathExInt.h +++ b/src/mathed/InsetMathExInt.h @@ -18,21 +18,18 @@ #include "InsetMathNest.h" -#include - namespace lyx { - // cell(0) is stuff before the 'd', cell(1) the stuff after class InsetMathExInt : public InsetMathNest { public: /// - explicit InsetMathExInt(std::string const & name_); + explicit InsetMathExInt(docstring const & name_); /// - void symbol(std::string const &); + void symbol(docstring const &); /// - void metrics(MetricsInfo & mi, Dimension & dim) const; + bool metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo &, int x, int y) const; @@ -45,19 +42,20 @@ public: /// void mathematica(MathematicaStream &) const; /// - void mathmlize(MathMLStream &) const; + void mathmlize(MathStream &) const; /// void write(WriteStream & os) const; private: - virtual std::auto_ptr doClone() const; + virtual std::auto_ptr doClone() const; /// bool hasScripts() const; /// - std::string symbol_; + docstring symbol_; }; } // namespace lyx + #endif