X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetlabel.h;h=f02117cbde74fa16a850ba88cc673d17aa170c60;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=65e46f8d26e8814386e3f3603242f35b78af00cc;hpb=0d449056ef9ace3ef737e4b9aba8d3994615dc18;p=lyx.git diff --git a/src/insets/insetlabel.h b/src/insets/insetlabel.h index 65e46f8d26..f02117cbde 100644 --- a/src/insets/insetlabel.h +++ b/src/insets/insetlabel.h @@ -14,31 +14,34 @@ #include "insetcommand.h" + +namespace lyx { + class InsetLabel : public InsetCommand { public: /// InsetLabel(InsetCommandParams const &); /// - lyx::docstring const getScreenLabel(Buffer const &) const; + docstring const getScreenLabel(Buffer const &) const; /// EDITABLE editable() const { return IS_EDITABLE; } /// InsetBase::Code lyxCode() const { return InsetBase::LABEL_CODE; } /// Appends \c list with this label - void getLabelList(Buffer const &, std::vector & list) const; + void getLabelList(Buffer const &, std::vector & list) const; /// - int latex(Buffer const &, lyx::odocstream &, - OutputParams const &) const; + int latex(Buffer const &, odocstream &, OutputParams const &) const; /// - int plaintext(Buffer const &, lyx::odocstream &, - OutputParams const &) const; + int plaintext(Buffer const &, odocstream &, OutputParams const &) const; /// - int docbook(Buffer const &, lyx::odocstream &, - OutputParams const &) const; + int docbook(Buffer const &, odocstream &, OutputParams const &) const; protected: virtual void doDispatch(LCursor & cur, FuncRequest & cmd); private: virtual std::auto_ptr doClone() const; }; + +} // namespace lyx + #endif