]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbibtex.h
hopefully fix tex2lyx linking.
[lyx.git] / src / insets / insetbibtex.h
index 09ba9816f806a162f26b54d6de5e8beb6bd7e897..c6ef73bb045057f7695789b2f960aa849638e282 100644 (file)
@@ -16,6 +16,9 @@
 #include <vector>
 #include "insetcommand.h"
 
+
+namespace lyx {
+
 /** Used to insert BibTeX's information
   */
 class InsetBibtex : public InsetCommand {
@@ -23,7 +26,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,8 +34,7 @@ public:
        ///
        bool display() const { return true; }
        ///
-       int latex(Buffer const &, std::ostream &,
-                 OutputParams const &) const;
+       int latex(Buffer const &, odocstream &, OutputParams const &) const;
        ///
        void fillWithBibKeys(Buffer const & buffer,
                std::vector<std::pair<std::string,std::string> > & keys) const;
@@ -51,4 +53,7 @@ private:
 
 };
 
+
+} // namespace lyx
+
 #endif // INSET_BIBTEX_H