]> git.lyx.org Git - lyx.git/blob - src/support/LIstream.h
fix typo that put too many include paths for most people
[lyx.git] / src / support / LIstream.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
13 #ifndef LISTREAM_H
14 #define LISTREAM_H
15
16 #ifdef HAVE_ISTREAM
17 #include <istream>
18 #else
19 #include <iostream>
20 #endif
21
22 #endif