From 6705bcc46668ecf6bc60745d2e9303b3dbb05f27 Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 12 Nov 1996 21:45:18 +0000 Subject: [PATCH] lilypond-0.0.10 --- hdr/accidental.hh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 hdr/accidental.hh 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 + -- 2.39.5