]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/note-head.hh
release: 1.3.62
[lilypond.git] / lily / include / note-head.hh
1 /*
2   note-head.hh -- part of GNU LilyPond
3
4   (c) 1996--2000 Han-Wen Nienhuys
5 */
6
7 #ifndef NOTEHEAD_HH
8 #define NOTEHEAD_HH
9
10 #include "rhythmic-head.hh"
11
12 /** ball at the end of the stem. Takes care of:
13
14   * help lines  
15
16   Properties
17
18   style -- symbol that sets note head style
19
20   */
21
22 class Note_head : public Rhythmic_head
23 {
24 public:
25   static int compare (Note_head * const &a, Note_head *const &b) ;
26  static SCM brew_molecule (SCM);
27   
28
29   Molecule ledger_line (Interval) const;
30   Note_head (SCM);
31
32   SCM member_before_line_breaking ();
33   static SCM before_line_breaking (SCM);
34   SCM member_brew_molecule() const;
35 };
36 #endif // NOTEHEAD_HH
37