]> git.lyx.org Git - lyx.git/blob - src/Lsstream.h
fix typo that put too many include paths for most people
[lyx.git] / src / Lsstream.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  *
5  *           LyX, The Document Processor
6  *
7  *          Copyright 1995 Matthias Ettrich
8  *          Copyright 1995-2001 The LyX Team.
9  *
10  * ====================================================== */
11
12 #ifndef LSSTREAM_H
13 #define LSSTREAM_H
14
15 // Since we will include a string header anyway, we'd better do it
16 // right now so that <string> is not loaded before lyxstring.h. (JMarc)
17 #include "LString.h"
18
19 #ifdef HAVE_SSTREAM
20 #include <sstream>
21 #else
22 #include "support/sstream.h"
23 #endif
24
25 using std::istringstream;
26 using std::ostringstream;
27 using std::stringstream;
28
29 #endif