From 3b5a233ccbe14b0e416886f1e85e650c98074c4b Mon Sep 17 00:00:00 2001 From: fred Date: Fri, 15 Nov 1996 20:32:13 +0000 Subject: [PATCH] lilypond-0.0.10 --- hdr/localkeyitem.hh | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 hdr/localkeyitem.hh diff --git a/hdr/localkeyitem.hh b/hdr/localkeyitem.hh new file mode 100644 index 0000000000..5b045c93ae --- /dev/null +++ b/hdr/localkeyitem.hh @@ -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 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 + -- 2.39.5