X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsethfill.h;h=51f5b59fa1ddc4103eceb1d7f2ea2f0258000c79;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=309d4975f8e838768c491563b0bb5ddb137d8488;hpb=8b67659646c6850377cb9f44a2a0a22c0e80840c;p=lyx.git diff --git a/src/insets/insethfill.h b/src/insets/insethfill.h index 309d4975f8..51f5b59fa1 100644 --- a/src/insets/insethfill.h +++ b/src/insets/insethfill.h @@ -15,24 +15,24 @@ #include "insetcommand.h" + +namespace lyx { + class InsetHFill : public InsetCommand { public: /// InsetHFill(); /// - void metrics(MetricsInfo &, Dimension &) const; + bool metrics(MetricsInfo &, Dimension &) const; /// - lyx::docstring const getScreenLabel(Buffer const &) const; + docstring const getScreenLabel(Buffer const &) const; /// InsetBase::Code lyxCode() const { return InsetBase::HFILL_CODE; } /// - int latex(Buffer const &, lyx::odocstream &, - OutputParams const &) const; - /// - int plaintext(Buffer const &, lyx::odocstream &, + int plaintext(Buffer const &, odocstream &, OutputParams const & runparams) const; /// - int docbook(Buffer const &, std::ostream &, + int docbook(Buffer const &, odocstream &, OutputParams const & runparams) const; /// void write(Buffer const & buf, std::ostream & os) const; @@ -45,4 +45,7 @@ private: virtual std::auto_ptr doClone() const; }; + +} // namespace lyx + #endif