]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/note-head.hh
e931ede0ea9931b7674b848b99afc1dce43f3905
[lilypond.git] / lily / include / note-head.hh
1 /*
2   note-head.hh -- part of GNU LilyPond
3
4   (c) 1996--1999 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   */
17
18 class Note_head : public Rhythmic_head {
19 public:
20   int position_i_;
21
22   Note_head ();
23   void flip_around_stem (Direction);
24   static int compare (Note_head * const &a, Note_head *const &b) ;
25 protected:
26   virtual Interval do_width () const;
27   virtual void do_pre_processing();
28   virtual Molecule* do_brew_molecule_p() const;
29 };
30 #endif // NOTEHEAD_HH
31