]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxmanip.h
remove reference to LaTeXStream
[lyx.git] / src / support / lyxmanip.h
index 44426fea8c6080f9945d007c0b06c2b0177a79cc..b2d08611536985bfe2265b1eec6a9c8ce24d24ca 100644 (file)
 #ifndef LYX_MANIP_H
 #define LYX_MANIP_H
 
-#include "support/std_string.h"
 #include "support/std_ostream.h"
 
+
+namespace lyx {
+
 ///
 struct NewLineAndDepth_ {
        int depth_;
@@ -33,8 +35,11 @@ NewLineAndDepth_ newlineAndDepth(int n)
 inline
 std::ostream & operator<<(std::ostream & os, NewLineAndDepth_ const & nlad_)
 {
-       os << string(nlad_.depth_, ' ');
+       os << std::string(nlad_.depth_, ' ');
        return os;
 }
 
+
+} // namespace lyx
+
 #endif