]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/stream.hh
release: 1.5.21
[lilypond.git] / lily / include / stream.hh
1 /*   
2 stream.hh -- declare compatibility glue for gcc 3.
3
4 source file of the GNU LilyPond music typesetter
5
6 (c) 2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
8  */
9
10 #ifndef STREAM_HH
11 #define STREAM_HH
12 #include "string.hh"
13
14
15 #include <iostream.h> /* gcc 3.0 */
16 #if __GNUC__ > 2
17 ostream *open_file_stream (String filename,
18                            std::ios_base::openmode mode=std::ios::out);
19 #else
20 ostream *open_file_stream (String filename, int mode=ios::out);
21 #endif
22 void close_file_stream (ostream *os);
23
24
25
26
27 #endif /* STREAM_HH */
28