]> git.lyx.org Git - lyx.git/blob - src/Lsstream.h
Point fix, earlier forgotten
[lyx.git] / src / Lsstream.h
1 // -*- C++ -*-
2 /**
3  * \file Lsstream.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef LSSTREAM_H
14 #define LSSTREAM_H
15
16 // Since we will include a string header anyway, we'd better do it
17 // right now so that <string> is not loaded before lyxstring.h. (JMarc)
18 #include "LString.h"
19
20 #ifdef HAVE_SSTREAM
21 #include <sstream>
22 #else
23 #include "support/sstream.h"
24 #endif
25
26 using std::istringstream;
27 using std::ostringstream;
28 using std::stringstream;
29
30 #endif