X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsettoc.h;h=73bf1b67d32972a0109c97fc63a5c3f7988e4314;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=0ef06b3e73e4f086fc81193eea7eff21cfe3b203;hpb=0d449056ef9ace3ef737e4b9aba8d3994615dc18;p=lyx.git diff --git a/src/insets/insettoc.h b/src/insets/insettoc.h index 0ef06b3e73..73bf1b67d3 100644 --- a/src/insets/insettoc.h +++ b/src/insets/insettoc.h @@ -15,13 +15,16 @@ #include "insetcommand.h" +namespace lyx { + + /// Used to insert table of contents and similar lists class InsetTOC : public InsetCommand { public: /// explicit InsetTOC(InsetCommandParams const &); /// - lyx::docstring const getScreenLabel(Buffer const &) const; + docstring const getScreenLabel(Buffer const &) const; /// EDITABLE editable() const { return IS_EDITABLE; } /// @@ -29,13 +32,16 @@ public: /// bool display() const { return true; } /// - 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; private: virtual std::auto_ptr doClone() const; }; + +} // namespace lyx + #endif