]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/stream.hh
* flower
[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--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #ifndef STREAM_HH
10 #define STREAM_HH
11
12 #include <iostream>
13 #include <sstream>
14
15 #include "string.hh"
16
17 #if __GNUC__ > 2
18 std::ostream *open_file_stream (String file_name,
19                                 std::ios_base::openmode mode = std::ios::out);
20 #else
21 std::ostream *open_file_stream (String file_name, int mode = ios::out);
22 #endif
23 void close_file_stream (std::ostream *os);
24
25 #endif /* STREAM_HH */
26