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