]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/staff-bar.hh
release: 1.3.68
[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--2000 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
15
16 /**
17    A bar that is on a staff.
18    Ugh. Entita non multiplicandum  ... 
19  */
20 class Staff_bar : public Bar
21 {
22 public:
23   VIRTUAL_COPY_CONS(Score_element);
24   virtual Real get_bar_size () const;
25   Staff_bar (SCM);
26 };
27
28 #endif /* STAFF_BAR_HH */
29