]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/collision.hh
release: 0.0.52
[lilypond.git] / lily / include / collision.hh
1 /*
2   collision.hh -- declare 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 COLLISION_HH
11 #define COLLISION_HH
12 #include "lily-proto.hh"
13 #include "item.hh"
14
15 class Collision : public Item {
16     Array<Note_column*> clash_l_arr_;
17 protected:
18     virtual void do_pre_processing();
19 public:
20     NAME_MEMBERS(Collision);
21     void add (Note_column*ncol_l);
22     Collision();
23     
24 };
25 #endif // COLLISION_HH