]> git.donarmstrong.com Git - lilypond.git/blob - hdr/accidental.hh
a1c5d80d30bb19267acbee01e7afdb410c12b550
[lilypond.git] / hdr / accidental.hh
1 /*
2   accidental.hh -- part of LilyPond
3
4   (c) 1996,97 Han-Wen Nienhuys
5 */
6
7 #ifndef ACCIDENTAL_HH
8 #define ACCIDENTAL_HH
9 #include "item.hh"
10
11 struct Accidental : Item {
12     int type,pos; 
13
14     void preprocess();
15     Accidental(int type, int position);
16     void print()const;
17 private:
18     void brew_molecule();
19 };
20 #endif // ACCIDENTAL_HH
21