]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.7
authorfred <fred>
Sat, 9 Aug 1997 14:54:25 +0000 (14:54 +0000)
committerfred <fred>
Sat, 9 Aug 1997 14:54:25 +0000 (14:54 +0000)
lily/timing-grav.cc [new file with mode: 0644]

diff --git a/lily/timing-grav.cc b/lily/timing-grav.cc
new file mode 100644 (file)
index 0000000..97d7c92
--- /dev/null
@@ -0,0 +1,27 @@
+/*
+  timing-grav.cc -- implement Timing_engraver
+
+  source file of the GNU LilyPond music typesetter
+
+  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+*/
+#if 0
+
+#include "timing-grav.hh"
+#include "command-request.hh"
+
+
+Timing_engraver::Timing_engraver()
+{
+    default_grouping_ = Rhythmic_grouping(MInterval(0,4),4); // ugh
+}
+
+void
+Timing_engraver::fill_staff_info(Staff_info &inf)
+{
+    inf.time_C_ = &time_;
+    inf.rhythmic_C_ = &default_grouping_;
+}
+
+
+#endif