X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetspace.h;h=414e6e4171411043755982c71732157aef84cebc;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=76ec3c95c187f19de53b9b96199560d7a025d9c8;hpb=609889cb354f3bbaaddd8a3f6841b2c9453160e4;p=lyx.git diff --git a/src/insets/insetspace.h b/src/insets/insetspace.h index 76ec3c95c1..414e6e4171 100644 --- a/src/insets/insetspace.h +++ b/src/insets/insetspace.h @@ -18,6 +18,9 @@ #include "inset.h" + +namespace lyx { + class LaTeXFeatures; /// Used to insert different kinds of spaces @@ -53,7 +56,7 @@ public: /// Kind kind() const; /// - void metrics(MetricsInfo &, Dimension &) const; + bool metrics(MetricsInfo &, Dimension &) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -61,16 +64,16 @@ public: /// Will not be used when lyxf3 void read(Buffer const &, LyXLex & lex); /// - int latex(Buffer const &, std::ostream &, + int latex(Buffer const &, odocstream &, OutputParams const &) const; /// - int plaintext(Buffer const &, std::ostream &, + int plaintext(Buffer const &, odocstream &, OutputParams const &) const; /// - int docbook(Buffer const &, std::ostream &, + int docbook(Buffer const &, odocstream &, OutputParams const &) const; /// the string that is passed to the TOC - virtual int textString(Buffer const &, std::ostream & os, + virtual int textString(Buffer const &, odocstream &, OutputParams const &) const; /// InsetBase::Code lyxCode() const { return InsetBase::SPACE_CODE; } @@ -91,4 +94,7 @@ private: Kind kind_; }; + +} // namespace lyx + #endif // INSET_SPACE_H