]> git.lyx.org Git - features.git/blobdiff - src/support/lyxmanip.h
Replace LString.h with support/std_string.h,
[features.git] / src / support / lyxmanip.h
index a03a0c7e0532fcf568c07ca92f75193908df5755..44426fea8c6080f9945d007c0b06c2b0177a79cc 100644 (file)
@@ -1,10 +1,19 @@
 // -*- C++ -*-
+/**
+ * \file lyxmanip.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef LYX_MANIP_H
 #define LYX_MANIP_H
 
-#include "support/LOstream.h"
-
-using std::ostream;
+#include "support/std_string.h"
+#include "support/std_ostream.h"
 
 ///
 struct NewLineAndDepth_ {
@@ -22,7 +31,7 @@ NewLineAndDepth_ newlineAndDepth(int n)
 
 ///
 inline
-ostream & operator<<(ostream & os, NewLineAndDepth_ const & nlad_)
+std::ostream & operator<<(std::ostream & os, NewLineAndDepth_ const & nlad_)
 {
        os << string(nlad_.depth_, ' ');
        return os;