]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/grob-pitch-tuple.hh
d9a824ad1f974a8f3a198c404df5485763c6d818
[lilypond.git] / lily / include / grob-pitch-tuple.hh
1 /*   
2 grob-pitch-tuple.hh -- declare Grob_pitch_tuple
3
4 source file of the GNU LilyPond music typesetter
5
6 (c) 2001--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
8  */
9
10 #ifndef GROB_PITCH_TUPLE_HH
11 #define GROB_PITCH_TUPLE_HH
12
13 #include "pitch.hh"
14 #include "moment.hh"
15
16 struct Grob_pitch_tuple {
17   Pitch pitch_;
18   Grob *head_;
19   Moment end_;
20
21   Grob_pitch_tuple ();
22   Grob_pitch_tuple (Grob*, Music*, Moment);
23   static int pitch_compare (Grob_pitch_tuple const &, Grob_pitch_tuple const &);
24   static int time_compare (Grob_pitch_tuple const &, Grob_pitch_tuple const &);  
25 };
26
27 int compare (Grob_pitch_tuple const &, Grob_pitch_tuple const&);
28
29
30 #endif /* GROB_PITCH_TUPLE_HH */
31