X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathTFrac.h;h=5299b0b11aa741ba5f047b14e29546da15f8e3dc;hb=a746aa52146257c0e7a2d60123f63dccad5b2751;hp=018fe37721d70d485f9bb637a9db722b39aa6ff6;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathTFrac.h b/src/mathed/InsetMathTFrac.h index 018fe37721..5299b0b11a 100644 --- a/src/mathed/InsetMathTFrac.h +++ b/src/mathed/InsetMathTFrac.h @@ -15,23 +15,29 @@ #include "InsetMathFrac.h" +namespace lyx { + + /// \dfrac support class InsetMathTFrac : public InsetMathFrac { public: /// InsetMathTFrac(); /// - void metrics(MetricsInfo & mi, Dimension & dim) const; + bool metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo &, int x, int y) const; /// - std::string name() const; + docstring name() const; /// - void mathmlize(MathMLStream &) const; + void mathmlize(MathStream &) const; /// void validate(LaTeXFeatures & features) const; private: - virtual std::auto_ptr doClone() const; + virtual std::auto_ptr doClone() const; }; + + +} // namespace lyx #endif