X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fmusic-wrapper-iterator.hh;h=ca118be037ad06b68f085625076514dff35e8b11;hb=78f563e58de2de28fd17067fd434a42cb9f055a5;hp=2d985372e85a147f9bfe94495eee7ebf44f13bad;hpb=d765f3af45be51f15da55cf570a4b172200e1035;p=lilypond.git diff --git a/lily/include/music-wrapper-iterator.hh b/lily/include/music-wrapper-iterator.hh index 2d985372e8..ca118be037 100644 --- a/lily/include/music-wrapper-iterator.hh +++ b/lily/include/music-wrapper-iterator.hh @@ -1,47 +1,40 @@ -/* +/* music-wrapper-iterator.hh -- declare Music_wrapper_iterator - + source file of the GNU LilyPond music typesetter - - (c) 1998--2002 Han-Wen Nienhuys - - */ + + (c) 1998--2006 Han-Wen Nienhuys +*/ #ifndef MUSIC_WRAPPER_ITERATOR_HH #define MUSIC_WRAPPER_ITERATOR_HH -#include "music.hh" #include "music-iterator.hh" -/** - The iterator for a #Music_wrapper#. Since #Music_wrapper# essentially - does nothing, this iterator creates a child iterator and delegates - all work to that child. - */ +/** + The iterator for a #Music_wrapper#. Since #Music_wrapper# essentially + does nothing, this iterator creates a child iterator and delegates + all work to that child. +*/ class Music_wrapper_iterator : public Music_iterator { public: - VIRTUAL_COPY_CONS (Music_iterator); - DECLARE_SCHEME_CALLBACK(constructor, ()); + DECLARE_SCHEME_CALLBACK (constructor, ()); Music_wrapper_iterator (); - Music_wrapper_iterator (Music_wrapper_iterator const&); + DECLARE_CLASSNAME(Music_wrapper_iterator); + virtual void derived_substitute (Context *f, Context *t); virtual void derived_mark () const; - virtual void construct_children () ; + virtual void construct_children (); virtual Moment pending_moment () const; - virtual void do_quit(); + virtual void do_quit (); virtual bool ok () const; - virtual SCM get_pending_events (Moment)const; - virtual void skip (Moment); - + virtual bool run_always () const; protected: virtual void process (Moment); - virtual Music_iterator *try_music_in_children (Music *) const; Music_iterator *child_iter_; }; #endif /* MUSIC_WRAPPER_ITERATOR_HH */ - -