]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/re-rhythmed-music.hh
4c258a7be998e6b475605af111bdcbbbfac96ea6
[lilypond.git] / lily / include / re-rhythmed-music.hh
1 /*   
2   re-rhythmed-music.hh -- declare Re_rhythmed_music
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999 Jan Nieuwenhuizen <janneke@gnu.org>
7   
8  */
9
10 #ifndef RE_RHYTHMED_MUSIC_HH
11 #define RE_RHYTHMED_MUSIC_HH
12
13 #include "music-wrapper.hh"
14
15 class Re_rhythmed_music : public Music_wrapper
16 {
17 public:
18   void do_print () const;
19   Re_rhythmed_music (Music*, Music*);
20   
21   VIRTUAL_COPY_CONS(Music);
22   virtual Music_iterator* to_rhythm (Music_iterator*);
23 };
24
25
26 #endif /* RE_RHYTHMED_MUSIC_HH */
27