]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/relative-octave-check.hh
* gcc-3.4 snapshot: 3.4.0 20040215 (prerelease) compile fixes, and
[lilypond.git] / lily / include / relative-octave-check.hh
1 /*   
2   relative-octave-check.hh -- declare Relative_octave_octave-check
3   
4   source file of  GNU LilyPond
5   
6   (c) 2003--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef RELATIVE_OCTAVE_CHECK_HH
11 #define RELATIVE_OCTAVE_CHECK_HH
12
13 #include "music.hh"
14
15 class Relative_octave_check : public Music
16 {
17 public:
18   VIRTUAL_COPY_CONSTRUCTOR (Music, Relative_octave_check);
19
20   virtual Pitch to_relative_octave (Pitch);
21 };
22
23 #endif /* RELATIVE_OCTAVE_CHECK_HH */
24
25