]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/relative-music.hh
release: 1.5.29
[lilypond.git] / lily / include / relative-music.hh
1 /*   
2   relative-music.hh -- declare Relative_octave_music
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef RELATIVE_MUSIC_HH
11 #define RELATIVE_MUSIC_HH
12
13 #include "music-wrapper.hh"
14
15 class Relative_octave_music : public Music_wrapper
16 {
17 public:
18   Relative_octave_music (SCM l);
19   Relative_octave_music ();
20   
21   VIRTUAL_COPY_CONS (Music);
22   virtual Pitch to_relative_octave (Pitch);
23 };
24
25
26 #endif /* RELATIVE_MUSIC_HH */
27