]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxmanip.h
Fixed some lines that were too long. It compiled afterwards.
[lyx.git] / src / support / lyxmanip.h
index 9c066eaab342d17d5160e4f4581251b38d40b141..b2d08611536985bfe2265b1eec6a9c8ce24d24ca 100644 (file)
@@ -1,8 +1,21 @@
 // -*- 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"
+#include "support/std_ostream.h"
+
+
+namespace lyx {
 
 ///
 struct NewLineAndDepth_ {
@@ -22,11 +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;
 }
 
-///
-std::string fmt(char const * fmtstr ...);
+
+} // namespace lyx
 
 #endif