X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finseturl.h;h=124600e091507125c60eaf27c6a2e02cf538002d;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=6536be76e06c064f67165d1a0d598625bc2a493f;hpb=d9e6e32961860821ecc047039ae6c1a9dcc6e35d;p=lyx.git diff --git a/src/insets/inseturl.h b/src/insets/inseturl.h index 6536be76e0..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,25 +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 linuxdoc(Buffer const &, std::ostream &, - 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 { @@ -55,4 +55,7 @@ private: } }; + +} // namespace lyx + #endif