From: fred Date: Fri, 21 Mar 1997 14:33:49 +0000 (+0000) Subject: lilypond-0.0.44 X-Git-Tag: release/1.5.59~6190 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=182995ab1427ab27c33b211a74f6df25e4056374;p=lilypond.git lilypond-0.0.44 --- diff --git a/lib/include/source-file.hh b/lib/include/source-file.hh index 7f7168eb7e..6fdcc5d88a 100644 --- a/lib/include/source-file.hh +++ b/lib/include/source-file.hh @@ -5,19 +5,21 @@ #ifndef SOURCE_FILE_HH #define SOURCE_FILE_HH - +#include "fproto.hh" +#include "string.hh" +class istream; /// class for reading and mapping a file. class Source_file { public: /** Ugh! filename gets changed! The path to the opened file may change, since it might be searched in multiple directories. */ - Source_file( String& filename_str_r ); + Source_file( String filename_str_r ); virtual ~Source_file(); - char const* ch_c_l(); + char const* ch_C(); virtual String error_str( char const* pos_ch_c_l ); - istream* istream_l(); + istream * istream_l(); bool in_b( char const* pos_ch_c_l ); off_t length_off(); virtual int line_i( char const* pos_ch_c_l );