* The grand 2005-2006 replace.
[lilypond/patrick.git] / lily / include / pitch-interval.hh
blobdefa7a9e92defcfe7cca7ea3af4fd3d6e67b7447
1 /*
2 pitch-interval.hh -- declare Pitch_interval
4 source file of the GNU LilyPond music typesetter
6 (c) 2004--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
9 #ifndef PITCH_INTERVAL_HH
10 #define PITCH_INTERVAL_HH
12 #include "pitch.hh"
14 class Pitch_interval : public Drul_array<Pitch>
16 public:
17 Pitch_interval ();
18 Pitch_interval (Pitch, Pitch);
19 void add_point (Pitch);
20 bool is_empty () const;
23 #endif /* PITCH_INTERVAL_HH */