]> git.lyx.org Git - lyx.git/blob - src/support/LOstream.h
removed a warning from screen and added CFLAGS in lyx.spec.in.
[lyx.git] / src / support / LOstream.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 LOSTREAM_H
14 #define LOSTREAM_H 
15
16 #ifdef HAVE_CONFIG_H
17 #include <config.h>
18 #endif             
19
20 #ifdef HAVE_OSTREAM
21 #include <ostream>
22 #else 
23 #include <iostream>
24 #endif
25
26 using std::ostream;
27 using std::endl; 
28
29 #endif