]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/transposed-music.hh
* gcc-3.4 snapshot: 3.4.0 20040215 (prerelease) compile fixes, and
[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 #include "music-wrapper.hh"
14
15 class Transposed_music : public Music_wrapper
16 {
17 public:
18   Transposed_music ();
19   Transposed_music (SCM);
20   VIRTUAL_COPY_CONSTRUCTOR (Music, Transposed_music);
21
22   virtual Pitch to_relative_octave (Pitch);
23 };
24
25 #endif /* TRANSPOSED_MUSIC_HH */
26