]> git.lyx.org Git - lyx.git/blob - src/support/LIstream.h
another safety belt
[lyx.git] / src / support / LIstream.h
1 // -*- C++ -*-
2 /**
3  * \file LIstream.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  */
7
8 #ifndef LISTREAM_H
9 #define LISTREAM_H
10
11 #ifdef HAVE_ISTREAM
12 #include <istream>
13 #else
14 #include <iostream>
15 #endif
16
17 #endif