From f9bfbb89d2bcef83267f63f4f8deb59a274b8d1f Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 4 Mar 1997 17:25:45 +0000 Subject: [PATCH] lilypond-0.0.39 --- m2m/include/lily-stream.hh | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 m2m/include/lily-stream.hh diff --git a/m2m/include/lily-stream.hh b/m2m/include/lily-stream.hh new file mode 100644 index 0000000000..8c6622d324 --- /dev/null +++ b/m2m/include/lily-stream.hh @@ -0,0 +1,35 @@ +// +// lily-stream.hh -- part of LilyPond +// +// copyright 1997 Jan Nieuwenhuizen + +// should i be named Mudela_stream? + +#ifndef LILY_STREAM_HH +#define LILY_STREAM_HH + +/// Lily output +struct Lily_stream { + ostream* os_p_; + String filename_str_; + int indent_i_; + int column_i_; + int wrap_column_i_; + bool comment_mode_bo_; + + Lily_stream( String filename_str ); + ~Lily_stream(); + + Lily_stream& operator <<( String str ); + Lily_stream& operator <<( Midi_event& midi_event_r ); + + void check_comment( String str ); + void header(); + void indent(); + void newline(); + void open(); + void tnedni(); +}; + +#endif // LILY_STREAM_HH + -- 2.39.5