X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fstream.hh;h=4c938da6856a0ced1b122a4226adad4058127dc6;hb=459d4d5eaa90373349eb0461af7b6e3cdfd56981;hp=96ba397fa621f4d59a0c3a2d7dd212d55bdc591a;hpb=7e72a1e50e94a7f9738d62599de79fe7745f600c;p=lilypond.git diff --git a/lily/include/stream.hh b/lily/include/stream.hh index 96ba397fa6..4c938da685 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--2006 Han-Wen Nienhuys +*/ #ifndef STREAM_HH #define STREAM_HH +#include "std-string.hh" + #include #include - -#include "string.hh" +using namespace std; #if __GNUC__ > 2 -std::ostream *open_file_stream (String filename, - 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 filename, 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 */