]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/note-head-side.hh
421ad9c57d4fbec7379f92ece70935566eaea0ce
[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   // naming to avoid conflict with Align_element
25   Direction notehead_align_dir_;
26
27   Note_head_side ();
28   void add_support (Item*);
29   VIRTUAL_COPY_CONS (Score_element);
30 protected:
31   virtual void do_substitute_element_pointer (Score_element*,Score_element*);
32   virtual void do_pre_processing();    
33 };
34
35
36 #endif /* NOTE_HEAD_SIDE_HH */
37