]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/note-head-side.hh
3e94b475d2a3dadd05a5216e8a7812563ceea71c
[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 class Note_head_side: public virtual Item
19 {
20 public:
21   Note_head_side ();
22   bool supported_b () const;
23   void add_support (Item*);
24   VIRTUAL_COPY_CONS (Score_element);
25 };
26
27
28 #endif /* NOTE_HEAD_SIDE_HH */
29