From: fred Date: Sun, 24 Mar 2002 19:47:57 +0000 (+0000) Subject: lilypond-0.0.76 X-Git-Tag: release/1.5.59~4463 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e02e732c7144280f56340fcdcd0f400b5a0f0e65;p=lilypond.git lilypond-0.0.76 --- diff --git a/flower/test/Makefile b/flower/test/Makefile index 0cc3bb960c..ec93a1e545 100644 --- a/flower/test/Makefile +++ b/flower/test/Makefile @@ -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 index 0000000000..6e4f0d28b6 --- /dev/null +++ b/lily/include/span-score-bar-grav.hh @@ -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 +*/ + + +#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