]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/span-score-bar-grav.hh
release: 0.1.11
[lilypond.git] / lily / include / span-score-bar-grav.hh
1 /*
2   span-score-bar-grav.hh -- declare Span_score_bar_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef SPAN_SCORE_BAR_GRAV_HH
11 #define SPAN_SCORE_BAR_GRAV_HH
12
13 #include "span-bar-grav.hh"
14
15 /** 
16
17   Make the bars that Span the entire score line (system). A
18   Span_bar_engraver which generates a special bar.
19
20   */
21
22 class Span_score_bar_engraver : public Span_bar_engraver 
23 {
24 public:
25     DECLARE_MY_RUNTIME_TYPEINFO;
26     virtual Span_bar* get_span_bar_p() const;
27 };
28
29 /**
30   Please don't shoot the piano player
31  */
32 class Piano_bar_engraver :  public Span_score_bar_engraver
33 {
34 public:
35     DECLARE_MY_RUNTIME_TYPEINFO;
36     virtual Span_bar * get_span_bar_p() const;
37 };
38
39 #endif // SPAN_SCORE_BAR_GRAV_HH