]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.56
authorfred <fred>
Wed, 23 Apr 1997 22:35:41 +0000 (22:35 +0000)
committerfred <fred>
Wed, 23 Apr 1997 22:35:41 +0000 (22:35 +0000)
lily/include/rest-collision.hh [new file with mode: 0644]

diff --git a/lily/include/rest-collision.hh b/lily/include/rest-collision.hh
new file mode 100644 (file)
index 0000000..31a1c85
--- /dev/null
@@ -0,0 +1,26 @@
+/*
+  rest-collision.hh -- declare Rest_collision
+
+  source file of the LilyPond music typesetter
+
+  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+*/
+
+
+#ifndef REST_COLLISION_HH
+#define REST_COLLISION_HH
+
+#include "lily-proto.hh"
+#include "item.hh"
+
+class Rest_collision : public Item {
+    Array<Rest_column *> rest_l_arr_;
+    Array<Note_column *> 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