X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetbibtex.h;h=3c461d73bb02d76936b632af361c4f0a4f98017d;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=78e2d7b41e22dc95aa258aefb34648e086b3686a;hpb=8b67659646c6850377cb9f44a2a0a22c0e80840c;p=lyx.git diff --git a/src/insets/insetbibtex.h b/src/insets/insetbibtex.h index 78e2d7b41e..3c461d73bb 100644 --- a/src/insets/insetbibtex.h +++ b/src/insets/insetbibtex.h @@ -16,6 +16,11 @@ #include #include "insetcommand.h" +#include "support/filename.h" + + +namespace lyx { + /** Used to insert BibTeX's information */ class InsetBibtex : public InsetCommand { @@ -23,7 +28,7 @@ public: /// InsetBibtex(InsetCommandParams const &); /// - lyx::docstring const getScreenLabel(Buffer const &) const; + docstring const getScreenLabel(Buffer const &) const; /// EDITABLE editable() const { return IS_EDITABLE; } /// @@ -31,13 +36,12 @@ public: /// bool display() const { return true; } /// - int latex(Buffer const &, lyx::odocstream &, - OutputParams const &) const; + int latex(Buffer const &, odocstream &, OutputParams const &) const; /// void fillWithBibKeys(Buffer const & buffer, - std::vector > & keys) const; + std::vector > & keys) const; /// - std::vector const getFiles(Buffer const &) const; + std::vector const getFiles(Buffer const &) const; /// bool addDatabase(std::string const &); /// @@ -51,4 +55,7 @@ private: }; + +} // namespace lyx + #endif // INSET_BIBTEX_H