X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finseturl.h;h=124600e091507125c60eaf27c6a2e02cf538002d;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=1aba7e51e3cc24754a3076ead0ec5b8331a9eea1;hpb=609889cb354f3bbaaddd8a3f6841b2c9453160e4;p=lyx.git diff --git a/src/insets/inseturl.h b/src/insets/inseturl.h index 1aba7e51e3..124600e091 100644 --- a/src/insets/inseturl.h +++ b/src/insets/inseturl.h @@ -15,6 +15,9 @@ #include "insetcommand.h" + +namespace lyx { + class LaTeXFeatures; /** The url inset @@ -29,22 +32,22 @@ public: /// void validate(LaTeXFeatures &) const; /// - std::string const getScreenLabel(Buffer const &) const; + docstring const getScreenLabel(Buffer const &) const; /// EDITABLE editable() const { return IS_EDITABLE; } /// bool display() const { return false; } /// - 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; private: virtual std::auto_ptr doClone() const { @@ -52,4 +55,7 @@ private: } }; + +} // namespace lyx + #endif