]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/note-head-side.hh
release: 1.1.62
[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   bool supported_b () const;
29   void add_support (Item*);
30   VIRTUAL_COPY_CONS (Score_element);
31 protected:
32   virtual void do_substitute_element_pointer (Score_element*,Score_element*);
33   virtual void do_pre_processing();    
34 };
35
36
37 #endif /* NOTE_HEAD_SIDE_HH */
38