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