]> git.lyx.org Git - features.git/blobdiff - src/Lsstream.h
Strip 320 #includes from the files in src.
[features.git] / src / Lsstream.h
index 79330e2d798a183afbdf413b2729323db0025fe9..bac4ce5fba6605a6c2765291758d0403b09e8597 100644 (file)
@@ -1,16 +1,21 @@
 // -*- 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>
@@ -20,5 +25,6 @@
 
 using std::istringstream;
 using std::ostringstream;
+using std::stringstream;
 
 #endif