]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/untransposable-music.hh
* lily/input-file-results.cc (do_one_file): Remove Paper_book hack.
[lilypond.git] / lily / include / untransposable-music.hh
1 /*   
2   untransposable-music.hh -- declare Untransposable_music
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2001--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
8  */
9
10 #ifndef UNTRANSPOSABLE_MUSIC_HH
11 #define UNTRANSPOSABLE_MUSIC_HH
12
13 #include "music-wrapper.hh"
14
15 class Untransposable_music : public Music_wrapper
16 {
17 public:
18   Untransposable_music ();
19   VIRTUAL_COPY_CONSTRUCTOR (Music, Untransposable_music);
20
21   virtual Pitch to_relative_octave (Pitch);
22   virtual void transpose (Pitch); 
23 };
24
25
26 #endif /* UNTRANSPOSABLE_MUSIC_HH */
27