X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fstream.hh;h=1178fc51ae23b8b32583049c8deeda81fea00e1a;hb=5815dfd8c5f049dba375d2961916448d6f1c40b0;hp=baecc6fb9f820e474426e351f443f1935eba047f;hpb=332da9f4d25f9f63a3222efc87fae06b0c7abbdd;p=lilypond.git diff --git a/lily/include/stream.hh b/lily/include/stream.hh index baecc6fb9f..1178fc51ae 100644 --- a/lily/include/stream.hh +++ b/lily/include/stream.hh @@ -1,28 +1,27 @@ -/* -stream.hh -- declare compatibility glue for gcc 3. +/* + stream.hh -- declare compatibility glue for gcc 3. -source file of the GNU LilyPond music typesetter + source file of the GNU LilyPond music typesetter -(c) 2001--2004 Han-Wen Nienhuys - - */ + (c) 2001--2005 Han-Wen Nienhuys +*/ #ifndef STREAM_HH #define STREAM_HH #include #include +using namespace std; #include "string.hh" #if __GNUC__ > 2 -std::ostream *open_file_stream (String file_name, - std::ios_base::openmode mode = std::ios::out); +ostream *open_file_stream (String file_name, + ios_base::openmode mode = ios::out); #else -std::ostream *open_file_stream (String file_name, int mode = ios::out); +ostream *open_file_stream (String file_name, int mode = ios::out); #endif -void close_file_stream (std::ostream *os); - +void close_file_stream (ostream *os); #endif /* STREAM_HH */