]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/repeated-music.hh
*** empty log message ***
[lilypond.git] / lily / include / repeated-music.hh
index d2d5ae387ebe2c46b8e9cad87da32a929e0645b8..e84b1d2fbc8e9f1be45439e644cc8b587d6bb52b 100644 (file)
@@ -7,8 +7,8 @@
   
  */
 
-#ifndef RepEATED_MUSIC_HH
-#define RepEATED_MUSIC_HH
+#ifndef REPEATED_MUSIC_HH
+#define REPEATED_MUSIC_HH
 
 #include "music.hh"
 
 class Repeated_music : public Music
 {
 public:
-  Music * body () const;
+  Repeated_music ();
+  Repeated_music (SCM);
+  VIRTUAL_COPY_CONSTRUCTOR (Music, Repeated_music);
+
+  Music *body () const;
   SCM alternatives () const;
 
-  /// how often do we repeat?
-  int repeat_count ( ) const;
+  /* How often do we repeat? */
+  int repeat_count () const;
   virtual Pitch to_relative_octave (Pitch);
 
   Moment body_get_length () const;
@@ -65,11 +69,7 @@ public:
   DECLARE_SCHEME_CALLBACK (folded_music_length, (SCM));    
   DECLARE_SCHEME_CALLBACK (minimum_start, (SCM));
   DECLARE_SCHEME_CALLBACK (first_start, (SCM));    
-  
-  VIRTUAL_COPY_CONS (Music);
-  Repeated_music ();
-  Repeated_music (SCM);
 };
 
 
-#endif /* RepEATED_MUSIC_HH */
+#endif /* REPEATED_MUSIC_HH */