]> git.donarmstrong.com Git - lilypond.git/blob - lily/untransposable-music.cc
* Documentation/user/refman.itely: remove superfluous -'s
[lilypond.git] / lily / untransposable-music.cc
1 /*   
2 untransposable-music.cc --  implement Untransposable_music
3
4 source file of the GNU LilyPond music typesetter
5
6 (c) 2001--2003  Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
8  */
9
10 #include "untransposable-music.hh"
11
12 /*
13   todo: This one, together with Un_relativable_music is ugh.
14
15   fixthis.
16 */
17 void
18 Untransposable_music::transpose (Pitch )
19 {
20 }
21
22 Pitch
23 Untransposable_music::to_relative_octave (Pitch p)
24 {
25   return p;
26 }
27
28 ADD_MUSIC(Untransposable_music);
29
30 Untransposable_music::Untransposable_music()
31 {
32
33 }