X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Frepeated-music.hh;h=e33c4b1b98434ff646422a998ed2363ae51a45d6;hb=9e781b7dc83b60a543ce218aa1a5f139f74c760f;hp=bd6e7aea9db841188e47667f853612806f3b6160;hpb=108c107d70a3cc48efd9f734a153ff82aac8fbb4;p=lilypond.git diff --git a/lily/include/repeated-music.hh b/lily/include/repeated-music.hh index bd6e7aea9d..e33c4b1b98 100644 --- a/lily/include/repeated-music.hh +++ b/lily/include/repeated-music.hh @@ -1,18 +1,27 @@ -/* - repeated-music.hh -- declare Repeated_music - - source file of the GNU LilyPond music typesetter - - (c) 1999--2004 Han-Wen Nienhuys - - */ +/* + This file is part of LilyPond, the GNU music typesetter. + + Copyright (C) 1999--2014 Han-Wen Nienhuys + + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . +*/ #ifndef REPEATED_MUSIC_HH #define REPEATED_MUSIC_HH #include "music.hh" - /** Musical repeats. @@ -25,12 +34,12 @@ There are three modes of representing this music: BODY A - B - C + B + C is called "folded". Mostly used for lyrics. - + BODY A B C is called volta. This is common notation @@ -44,28 +53,26 @@ If the number of repeats is bigger than the number of alternatives, then the first alternative is assumed to be repeated. - */ class Repeated_music { public: - static Music *body (Music*); - static SCM alternatives (Music*); + static Music *body (Music *); + static SCM alternatives (Music *); /* How often do we repeat? */ - static int repeat_count (Music*); - DECLARE_SCHEME_CALLBACK(relative_callback,(SCM,SCM)); + static int repeat_count (Music *); + DECLARE_SCHEME_CALLBACK (relative_callback, (SCM, SCM)); - static Moment body_get_length (Music*); + static Moment body_get_length (Music *); static Moment alternatives_get_length (Music *, bool fold); - static Moment alternatives_volta_get_length (Music *); + static Moment alternatives_volta_get_length (Music *); DECLARE_SCHEME_CALLBACK (unfolded_music_length, (SCM)); DECLARE_SCHEME_CALLBACK (volta_music_length, (SCM)); - DECLARE_SCHEME_CALLBACK (folded_music_length, (SCM)); + DECLARE_SCHEME_CALLBACK (folded_music_length, (SCM)); DECLARE_SCHEME_CALLBACK (minimum_start, (SCM)); - DECLARE_SCHEME_CALLBACK (first_start, (SCM)); + DECLARE_SCHEME_CALLBACK (first_start, (SCM)); }; - #endif /* REPEATED_MUSIC_HH */