]> git.lyx.org Git - lyx.git/blob - src/support/LOstream.h
some new (not extensive) changes, some fixes, will probably reverto to .la libs later...
[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_OSTREAM
17 #include <ostream>
18 #else 
19 #include <iostream>
20 #endif
21
22 using std::ostream;
23 using std::endl; 
24
25 #endif