]> git.lyx.org Git - lyx.git/blob - src/support/LIstream.h
removed a warning from screen and added CFLAGS in lyx.spec.in.
[lyx.git] / src / support / LIstream.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  * 
5  *           LyX, The Document Processor
6  *       
7  *          Copyright (C) 1995 Matthias Ettrich
8  *          Copyright (C) 1995-1999 The LyX Team.
9  *
10  *======================================================*/
11
12
13 #ifndef LISTREAM_H
14 #define LISTREAM_H 
15
16 #ifdef HAVE_CONFIG_H
17 #include <config.h> 
18 #endif
19
20 #ifdef HAVE_ISTREAM
21 #include <istream>
22 #else 
23 #include <iostream>
24 #endif
25
26 using std::istream;
27
28 #endif