From: fred Date: Fri, 15 Nov 1996 20:32:13 +0000 (+0000) Subject: lilypond-0.0.10 X-Git-Tag: release/1.5.59~6824 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=3b5a233ccbe14b0e416886f1e85e650c98074c4b;p=lilypond.git lilypond-0.0.10 --- 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 +