]> git.donarmstrong.com Git - lilypond.git/blob - hdr/accidental.hh
release: 0.0.26
[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 const char * name() const;
13     int type,pos; 
14
15     void preprocess();
16     Accidental(int type, int position);
17     void do_print()constt;
18 private:
19     void brew_molecule();
20 };
21 #endif // ACCIDENTAL_HH
22