]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/transposed-music.hh
7ae1db5595e27837e8368e045e27d46f2dcfe6cb
[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--2000 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   Musical_pitch transpose_to_pitch_;
20
21   void do_print () const;
22   Transposed_music (Music*, Musical_pitch);
23   
24   VIRTUAL_COPY_CONS(Music);
25   virtual Musical_pitch to_relative_octave (Musical_pitch);
26 };
27
28 #endif /* TRANSPOSED_MUSIC_HH */
29