]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rest-collision.hh
release: 0.0.56
[lilypond.git] / lily / include / rest-collision.hh
1 /*
2   rest-collision.hh -- declare Rest_collision
3
4   source file of the LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef REST_COLLISION_HH
11 #define REST_COLLISION_HH
12
13 #include "lily-proto.hh"
14 #include "item.hh"
15
16 class Rest_collision : public Item {
17     Array<Rest_column *> rest_l_arr_;
18     Array<Note_column *> ncol_l_arr_;
19 public:
20     void add(Rest_column*);
21     void add(Collision*);
22     NAME_MEMBERS(Rest_collision);
23 protected:
24     virtual void do_post_processing();
25 };
26 #endif // REST_COLLISION_HH