From: fred Date: Fri, 14 Feb 1997 18:49:56 +0000 (+0000) Subject: lilypond-0.0.32 X-Git-Tag: release/1.5.59~6339 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=6156e0fa18c9cfc4c97e0d074ae22da930419159;p=lilypond.git lilypond-0.0.32 --- diff --git a/hdr/staffeleminfo.hh b/hdr/staffeleminfo.hh new file mode 100644 index 0000000000..b8af8aeb22 --- /dev/null +++ b/hdr/staffeleminfo.hh @@ -0,0 +1,28 @@ +/* + staffeleminfo.hh -- declare Staff_elem_info + + source file of the LilyPond music typesetter + + (c) 1997 Han-Wen Nienhuys +*/ + + +#ifndef STAFFELEMINFO_HH +#define STAFFELEMINFO_HH + +#include "proto.hh" + +/// data container. +struct Staff_elem_info { + Staff_elem * elem_p_; + Request*req_l_; + const Voice * voice_l_; + Voice_group_registers * group_regs_l_; + Request_register * origin_reg_l_; + + /* *** */ + Staff_elem_info(Staff_elem*, Request*, Request_register*); + Staff_elem_info(); +}; + +#endif // STAFFELEMINFO_HH