]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.76
authorfred <fred>
Sun, 24 Mar 2002 19:47:57 +0000 (19:47 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:47:57 +0000 (19:47 +0000)
flower/test/Makefile
lily/include/span-score-bar-grav.hh [new file with mode: 0644]

index 0cc3bb960c5d2515ad05e64939c25e49073fafff..ec93a1e5454fdc8d18a692f308c4b7fec08c041c 100644 (file)
@@ -63,6 +63,8 @@ include ./$(depth)/make/Rules.make
 
 # auto dependencies:
 #
--include $(DEPFILES)
+ifdef DEPFILES
+include $(DEPFILES)
+endif
 #
 
diff --git a/lily/include/span-score-bar-grav.hh b/lily/include/span-score-bar-grav.hh
new file mode 100644 (file)
index 0000000..6e4f0d2
--- /dev/null
@@ -0,0 +1,32 @@
+/*
+  span-score-bar-grav.hh -- declare Span_score_bar_engraver
+
+  source file of the GNU LilyPond music typesetter
+
+  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+*/
+
+
+#ifndef SPAN_SCORE_BAR_GRAV_HH
+#define SPAN_SCORE_BAR_GRAV_HH
+
+#include "span-bar-grav.hh"
+
+class Span_score_bar_engraver : public Span_bar_engraver 
+{
+public:
+    NAME_MEMBERS();
+    virtual Span_bar* get_span_bar_p()const;
+};
+
+/**
+  Please don't shoot the piano player
+ */
+class Piano_bar_engraver :  public Span_score_bar_engraver
+{
+public:
+    NAME_MEMBERS();
+    virtual Span_bar * get_span_bar_p() const;
+};
+
+#endif // SPAN_SCORE_BAR_GRAV_HH