From: fred Date: Wed, 23 Apr 1997 22:35:41 +0000 (+0000) Subject: lilypond-0.0.56 X-Git-Tag: release/1.5.59~6146 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b912efb44a0a9e7b23c2b17846b247afe3f87c2c;p=lilypond.git lilypond-0.0.56 --- diff --git a/lily/include/rest-collision.hh b/lily/include/rest-collision.hh new file mode 100644 index 0000000000..31a1c8504b --- /dev/null +++ b/lily/include/rest-collision.hh @@ -0,0 +1,26 @@ +/* + rest-collision.hh -- declare Rest_collision + + source file of the LilyPond music typesetter + + (c) 1997 Han-Wen Nienhuys +*/ + + +#ifndef REST_COLLISION_HH +#define REST_COLLISION_HH + +#include "lily-proto.hh" +#include "item.hh" + +class Rest_collision : public Item { + Array rest_l_arr_; + Array ncol_l_arr_; +public: + void add(Rest_column*); + void add(Collision*); + NAME_MEMBERS(Rest_collision); +protected: + virtual void do_post_processing(); +}; +#endif // REST_COLLISION_HH