From: fred Date: Fri, 15 Nov 1996 10:20:12 +0000 (+0000) Subject: lilypond-0.0.10 X-Git-Tag: release/1.5.59~6827 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=bb9fca875364f5ecd530d9ca40dc61a61529190b;p=lilypond.git lilypond-0.0.10 --- diff --git a/hdr/keyitem.hh b/hdr/keyitem.hh new file mode 100644 index 0000000000..d5b159368b --- /dev/null +++ b/hdr/keyitem.hh @@ -0,0 +1,27 @@ +/* + keyitem.hh -- part of LilyPond + + (c) 1996 Han-Wen Nienhuys +*/ + +#ifndef KEYITEM_HH +#define KEYITEM_HH + +#include "item.hh" + +struct Keyitem : Item { + svec pitch; + svec acc; + int c_position; + + /****************/ + + Keyitem(int cposition); + void add(int pitch, int acc); + void read(svec k); + void preprocess(); + +private: + void brew_molecole(); +}; +#endif // KEYITEM_HH