]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rest-collision.hh
release: 1.1.39
[lilypond.git] / lily / include / rest-collision.hh
1 /*
2   rest-collision.hh -- declare Rest_collision
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.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     Link_array<Note_column> rest_l_arr_;
18     Link_array<Note_column> ncol_l_arr_;
19 public:
20     void add_column (Note_column*);
21     
22     Rest_collision();
23 protected:
24     virtual void do_pre_processing();
25     virtual void do_print() const;
26     virtual void do_substitute_element_pointer (Score_element*,Score_element*);
27 };
28 #endif // REST_COLLISION_HH