]> git.lyx.org Git - lyx.git/blobdiff - src/Lsstream.h
Point fix, earlier forgotten
[lyx.git] / src / Lsstream.h
index 89676b8a4ed6f446dc8287928333efe24d28790a..bac4ce5fba6605a6c2765291758d0403b09e8597 100644 (file)
@@ -1,23 +1,30 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2000 The LyX Team.
+/**
+ * \file Lsstream.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ====================================================== */
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef LSSTREAM_H
-#define LSSTREAM_H 
+#define LSSTREAM_H
+
+// Since we will include a string header anyway, we'd better do it
+// right now so that <string> is not loaded before lyxstring.h. (JMarc)
+#include "LString.h"
 
 #ifdef HAVE_SSTREAM
 #include <sstream>
-using std::istringstream;
-using std::ostringstream;
 #else
 #include "support/sstream.h"
 #endif
 
+using std::istringstream;
+using std::ostringstream;
+using std::stringstream;
+
 #endif