]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetspecialchar.h
hopefully fix tex2lyx linking.
[lyx.git] / src / insets / insetspecialchar.h
index 2b4ef0e7db2b53c66039653c693b578d64990ca2..9a31348d679553fc41dede94a3d9ecb1147c60ac 100644 (file)
@@ -17,6 +17,9 @@
 
 #include "inset.h"
 
+
+namespace lyx {
+
 class LaTeXFeatures;
 
 ///  Used to insert special chars
@@ -53,16 +56,16 @@ public:
        /// Will not be used when lyxf3
        void read(Buffer const &, LyXLex & lex);
        ///
-       int latex(Buffer const &, lyx::odocstream &,
+       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::SPECIALCHAR_CODE; }
@@ -84,4 +87,7 @@ private:
        Kind kind_;
 };
 
+
+} // namespace lyx
+
 #endif