]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/note-column.hh
release: 0.0.76
[lilypond.git] / lily / include / note-column.hh
1 /*
2   note-column.hh -- declare Note_column
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef NOTE_COLUMN_HH
11 #define NOTE_COLUMN_HH
12
13 #include "item.hh"
14 #include "head-column.hh"
15
16 /** a struct for treating a group of noteheads (noteheads, stem
17   (chord) and scripts ) as a single entity.  */
18 class Note_column : public Head_column {
19 protected:
20     virtual void do_pre_processing();
21
22 public:
23     bool h_shift_b_;
24     
25     Interval_t<int> head_positions_interval()const;
26         
27     NAME_MEMBERS();
28     Note_column();
29     virtual void set(Stem *);
30     void sort();
31 };
32
33 #endif // NOTE_COLUMN_HH