]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/folded-repeat-iterator.hh
* flower
[lilypond.git] / lily / include / folded-repeat-iterator.hh
index ab9217f0af384cb81c13699a433623eab448eca7..12b904f7598b3093b61a703b5e17b0b3e4b15bf0 100644 (file)
@@ -1,11 +1,10 @@
-/*   
+/*
   folded-repeat-iterator.hh -- declare Folded_repeat_iterator
-  
+
   source file of the GNU LilyPond music typesetter
-  
+
   (c) 1999--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
+*/
 
 #ifndef FOLDED_REPEAT_ITERATOR_HH
 #define FOLDED_REPEAT_ITERATOR_HH
 /**
    Iterate through a repeated section: first do the body, then
    all alternatives in parallel.
- */
+*/
 class Folded_repeat_iterator : public Music_iterator
 {
 public:
-  DECLARE_SCHEME_CALLBACK(constructor, ());
+  DECLARE_SCHEME_CALLBACK (constructor, ());
 
   Folded_repeat_iterator (Folded_repeat_iterator const &src);
   Folded_repeat_iterator ();
   virtual void derived_mark () const;
-  virtual void derived_substitute (Context *f, Context *t) ;
-
+  virtual void derived_substitute (Context *f, Context *t);
 
   virtual void construct_children ();
   virtual Moment pending_moment () const;
-  virtual void do_quit(); 
+  virtual void do_quit ();
   virtual bool ok () const;
 
 protected:
   void enter_alternative ();
   void leave_body ();
-  
+
   virtual void process (Moment);
   virtual Music_iterator *try_music_in_children (Music *) const;
 
 private:
-  Music_iterator * main_iter_;
-  Music_iterator * alternative_iter_;
+  Music_iterator *main_iter_;
+  Music_iterator *alternative_iter_;
 
   Moment main_length_mom_;
 };