X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetindex.h;h=638825412cce397fb9d05c75d51952896eddf3c6;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=1a6c22cced357fa5eb16e7ff3bd37d861269b262;hpb=34b7650cbbe6a9ed2de812e75771451b8c8fe983;p=lyx.git diff --git a/src/insets/insetindex.h b/src/insets/insetindex.h index 1a6c22cced..638825412c 100644 --- a/src/insets/insetindex.h +++ b/src/insets/insetindex.h @@ -15,6 +15,9 @@ #include "insetcommand.h" + +namespace lyx { + class LaTeXFeatures; /** Used to insert index labels @@ -24,13 +27,13 @@ public: /// InsetIndex(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; /// - int docbook(Buffer const &, std::ostream &, + int docbook(Buffer const &, odocstream &, OutputParams const &) const; private: virtual std::auto_ptr doClone() const { @@ -52,11 +55,14 @@ public: /// bool display() const { return true; } /// - lyx::docstring const getScreenLabel(Buffer const &) const; + docstring const getScreenLabel(Buffer const &) const; private: virtual std::auto_ptr doClone() const { return std::auto_ptr(new InsetPrintIndex(params())); } }; + +} // namespace lyx + #endif