]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/staff-bar.hh
release: 1.1.35
[lilypond.git] / lily / include / staff-bar.hh
1 /*   
2   staff-bar.hh -- declare Staff_bar
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef STAFF_BAR_HH
11 #define STAFF_BAR_HH
12
13 #include "bar.hh"
14 #include "staff-symbol-referencer.hh"
15
16 /**
17    A bar that is on a staff.
18    Ugh. Entita non multiplicandum  ... 
19  */
20 class Staff_bar : public Bar , public Staff_symbol_referencer
21 {
22 public:
23   VIRTUAL_COPY_CONS(Score_element);
24   virtual Real get_bar_size () const;
25 };
26
27 #endif /* STAFF_BAR_HH */
28