]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetspace.h
hopefully fix tex2lyx linking.
[lyx.git] / src / insets / insetspace.h
index 4d84e7c0c0597ced3080777e938f9ade9d56658a..02c88477e24e9fd621a338c9b57d139bec5de79b 100644 (file)
@@ -18,6 +18,9 @@
 
 #include "inset.h"
 
+
+namespace lyx {
+
 class LaTeXFeatures;
 
 ///  Used to insert different kinds of spaces
@@ -61,16 +64,16 @@ public:
        /// Will not be used when lyxf3
        void read(Buffer const &, LyXLex & lex);
        ///
-       int latex(Buffer const &, std::ostream &,
+       int latex(Buffer const &, odocstream &,
                  OutputParams const &) const;
        ///
-       int plaintext(Buffer const &, lyx::odocstream &,
+       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 &, lyx::odocstream &,
+       virtual int textString(Buffer const &, odocstream &,
                OutputParams const &) const;
        ///
        InsetBase::Code lyxCode() const { return InsetBase::SPACE_CODE; }
@@ -91,4 +94,7 @@ private:
        Kind kind_;
 };
 
+
+} // namespace lyx
+
 #endif // INSET_SPACE_H