]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/scale.hh
use rational numbers for alteration field of Pitch.
[lilypond.git] / lily / include / scale.hh
1 /* 
2   scale.hh -- declare Scale
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 2006 Han-Wen Nienhuys <hanwen@lilypond.org>
7   
8 */
9
10 #ifndef SCALE_HH
11 #define SCALE_HH
12
13 #include "smobs.hh"
14 #include "rational.hh"
15 #include "std-vector.hh"
16
17 struct Scale
18 {
19   vector<Rational> step_tones_;
20   Scale ();
21   Scale (Scale const&);
22   DECLARE_SMOBS (Scale);
23 };
24
25 extern Scale *default_global_scale;
26
27 #endif /* SCALE_HH */
28
29