X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetspecialchar.h;h=26ee9612bde82ee48684161012c687a4420fce19;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=0d444fbeff569715cae395854e0b9660a01acece;hpb=0d449056ef9ace3ef737e4b9aba8d3994615dc18;p=lyx.git diff --git a/src/insets/insetspecialchar.h b/src/insets/insetspecialchar.h index 0d444fbeff..26ee9612bd 100644 --- a/src/insets/insetspecialchar.h +++ b/src/insets/insetspecialchar.h @@ -17,6 +17,9 @@ #include "inset.h" + +namespace lyx { + class LaTeXFeatures; /// Used to insert special chars @@ -45,7 +48,7 @@ public: /// Kind kind() const; /// - void metrics(MetricsInfo &, Dimension &) const; + bool metrics(MetricsInfo &, Dimension &) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -53,16 +56,16 @@ public: /// Will not be used when lyxf3 void read(Buffer const &, LyXLex & lex); /// - int latex(Buffer const &, lyx::odocstream &, + int latex(Buffer const &, odocstream &, OutputParams const &) const; /// - int plaintext(Buffer const &, lyx::odocstream &, + int plaintext(Buffer const &, odocstream &, OutputParams const &) const; /// - int docbook(Buffer const &, lyx::odocstream &, + int docbook(Buffer const &, odocstream &, OutputParams const &) const; /// the string that is passed to the TOC - virtual int textString(Buffer const &, lyx::odocstream &, + virtual int textString(Buffer const &, odocstream &, OutputParams const &) const; /// InsetBase::Code lyxCode() const { return InsetBase::SPECIALCHAR_CODE; } @@ -84,4 +87,7 @@ private: Kind kind_; }; + +} // namespace lyx + #endif