From: fred Date: Sun, 24 Mar 2002 19:32:05 +0000 (+0000) Subject: lilypond-0.0.32 X-Git-Tag: release/1.5.59~5371 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c0b62b31f2ae406b191324c1474373f70282b3dd;p=lilypond.git lilypond-0.0.32 --- diff --git a/hdr/complexstaff.hh b/hdr/complexstaff.hh index 6c7dbdb18d..5a605d475e 100644 --- a/hdr/complexstaff.hh +++ b/hdr/complexstaff.hh @@ -21,12 +21,9 @@ struct Complex_staff : Staff { PStaff *pstaff_l_; /* *************** */ - Staff_column*create_col(Score_column*); - virtual Item *get_TYPESET_item(Command*); + Staff_column*create_col(); virtual void set_output(PScore *); - void process_commands( PCursor &where); - virtual void walk(); - + virtual Staff_walker *get_walker_p(); Complex_staff(); }; diff --git a/hdr/lyricstaff.hh b/hdr/lyricstaff.hh index 22fb8958b6..31cc62caaa 100644 --- a/hdr/lyricstaff.hh +++ b/hdr/lyricstaff.hh @@ -1,23 +1,23 @@ -// -// lyricstaff.hh -- part of LilyPond -// -// copyright 1997 Jan Nieuwenhuizen +/* + lyricstaff.hh -- part of LilyPond + + copyright 1997 Jan Nieuwenhuizen + */ #ifndef LYRICSTAFF_HH #define LYRICSTAFF_HH #include "staff.hh" -/// (lstaff) +/** + Hungarian prefix lstaff + */ struct Lyric_staff : Staff { PStaff* pstaff_l_; - Staff_column* create_col(Score_column*); - + Staff_column* create_col(); virtual void set_output(PScore *); - void process_commands(PCursor &where); - virtual void walk(); - + virtual Staff_walker *get_walker_p(); Lyric_staff(); };