From: fred Date: Tue, 12 Nov 1996 21:45:18 +0000 (+0000) Subject: lilypond-0.0.10 X-Git-Tag: release/1.5.59~6831 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=6705bcc46668ecf6bc60745d2e9303b3dbb05f27;p=lilypond.git lilypond-0.0.10 --- diff --git a/hdr/accidental.hh b/hdr/accidental.hh new file mode 100644 index 0000000000..ba341a30df --- /dev/null +++ b/hdr/accidental.hh @@ -0,0 +1,21 @@ +/* + accidental.hh -- part of LilyPond + + (c) 1996 Han-Wen Nienhuys +*/ + +#ifndef ACCIDENTAL_HH +#define ACCIDENTAL_HH +#include "item.hh" + +struct Accidental : Item { + int type,pos; + + void preprocess(); + Accidental(int type, int position); + void print()const; +private: + void brew_molecole(); +}; +#endif // ACCIDENTAL_HH +