]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.10
authorfred <fred>
Fri, 15 Nov 1996 20:32:13 +0000 (20:32 +0000)
committerfred <fred>
Fri, 15 Nov 1996 20:32:13 +0000 (20:32 +0000)
hdr/localkeyitem.hh [new file with mode: 0644]

diff --git a/hdr/localkeyitem.hh b/hdr/localkeyitem.hh
new file mode 100644 (file)
index 0000000..5b045c9
--- /dev/null
@@ -0,0 +1,33 @@
+/*
+  localkeyitem.hh -- part of LilyPond
+
+  (c) 1996 Han-Wen Nienhuys
+*/
+
+#ifndef LOCALKEYITEM_HH
+#define LOCALKEYITEM_HH
+#include "item.hh"
+
+struct Local_acc {
+    int name , acc, octave;
+    static int compare(Local_acc&, Local_acc&);
+};
+
+struct Local_key_item : Item {
+    svec<Local_acc> accs;
+
+    int c0_position;
+
+    /****************/
+    
+    Local_key_item(int c0position);
+    void add(int oct, int pitch, int acc);
+
+    void preprocess();
+
+private:
+    void brew_molecole();
+
+};
+#endif // LOCALKEYITEM_HH
+