X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fevent-chord-iterator.hh;h=946e4bebb4bc09c585c7240ce773b05c5ee68366;hb=7c93f8e815a77c7735d0ab0f3cc4b21c19a10199;hp=e3c5fa0d092c068dd4cd69d5db854325587c892f;hpb=e58fce49b3113408254011774685370b8233df17;p=lilypond.git diff --git a/lily/include/event-chord-iterator.hh b/lily/include/event-chord-iterator.hh index e3c5fa0d09..946e4bebb4 100644 --- a/lily/include/event-chord-iterator.hh +++ b/lily/include/event-chord-iterator.hh @@ -3,10 +3,9 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2003 Han-Wen Nienhuys + (c) 1997--2005 Han-Wen Nienhuys */ - #ifndef EVENT_ITER_HH #define EVENT_ITER_HH @@ -14,31 +13,30 @@ /** Walk through a Event_chord - */ +*/ class Event_chord_iterator : public Simple_music_iterator { - Event_chord * get_elt () const; + Event_chord *get_elt () const; /** Find a bottom notation context to deliver events to. - */ - virtual Translator_group* get_req_translator (); - + */ + virtual Context *get_bottom_context (); /* Since Event_chord_iterator has no list-cursor internally, we must use a status variable to adminstrate where we are */ - - enum { NONE_DONE, START_DONE, END_DONE } status_; + + enum { NONE_DONE, START_DONE, END_DONE } + status_; + public: - VIRTUAL_COPY_CONS (Music_iterator); - DECLARE_SCHEME_CALLBACK(constructor, ()); + DECLARE_SCHEME_CALLBACK (constructor, ()); Event_chord_iterator (); - Event_chord_iterator (Event_chord_iterator const&); + Event_chord_iterator (Event_chord_iterator const &); protected: virtual void process (Moment); virtual void construct_children (); }; - #endif // EVENT_ITER_HH