]> git.lyx.org Git - lyx.git/blob - src/Lsstream.h
Small fixes
[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-2000 The LyX Team.
9  *
10  * ====================================================== */
11
12 #ifndef LSSTREAM_H
13 #define LSSTREAM_H 
14
15 #ifdef HAVE_SSTREAM
16 #include <sstream>
17 #else
18 #include "support/sstream.h"
19 #endif
20
21 using std::istringstream;
22 using std::ostringstream;
23
24 #endif