]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/relative-music.hh
010c4ec73385101dcbb5f141785964e93753a8d0
[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--2003 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 ();
19   
20   VIRTUAL_COPY_CONS (Music);
21   virtual Pitch to_relative_octave (Pitch);
22 };
23
24 #endif /* RELATIVE_MUSIC_HH */
25
26