]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/note-head-side.hh
c5f7b0167c0e09e61ed2293a92373aa746e0ae5c
[lilypond.git] / lily / include / note-head-side.hh
1 /*   
2   note-head-side.hh -- declare Note_head_side
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef NOTE_HEAD_SIDE_HH
11 #define NOTE_HEAD_SIDE_HH
12
13 #include "item.hh"
14
15 /**
16    be next to noteheads.
17
18    UGH. another reduplication of Staff_side
19    */
20 class Note_head_side: public virtual Item
21 {
22   Link_array<Item> support_l_arr_;
23 public:
24   Direction align_dir_;
25
26   Note_head_side ();
27   void add_support (Item*);
28   VIRTUAL_COPY_CONS (Score_element);
29 protected:
30   virtual void do_substitute_element_pointer (Score_element*,Score_element*);
31   virtual void do_pre_processing();    
32 };
33
34
35 #endif /* NOTE_HEAD_SIDE_HH */
36