]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/score-bar.hh
release: 1.0.1
[lilypond.git] / lily / include / score-bar.hh
1 /*   
2   score-bar.hh -- declare Score_bar
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef SCORE_BAR_HH
11 #define SCORE_BAR_HH
12
13 #include "bar.hh"
14
15 /**
16   Score_bars are at the start of the line only, and 
17   they come before normal bars.
18  */
19 class Score_bar : public virtual Bar {
20 public:
21   DECLARE_MY_RUNTIME_TYPEINFO;
22   SCORE_ELEMENT_CLONE(Score_bar);
23 protected:
24   void do_pre_processing ();
25 };
26
27 #endif /* SCORE_BAR_HH */
28