]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/note-head-side.hh
7ecc0f2588d6ebad64721993cc68519593c625c0
[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   void add_support (Item*);
25   VIRTUAL_COPY_CONS (Score_element);
26 protected:
27   virtual void do_substitute_element_pointer (Score_element*,Score_element*);
28   virtual void do_pre_processing();    
29 };
30
31
32 #endif /* NOTE_HEAD_SIDE_HH */
33