]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.10
authorfred <fred>
Tue, 12 Nov 1996 21:45:18 +0000 (21:45 +0000)
committerfred <fred>
Tue, 12 Nov 1996 21:45:18 +0000 (21:45 +0000)
hdr/accidental.hh [new file with mode: 0644]

diff --git a/hdr/accidental.hh b/hdr/accidental.hh
new file mode 100644 (file)
index 0000000..ba341a3
--- /dev/null
@@ -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
+