]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/bar.hh
release: 1.3.69
[lilypond.git] / lily / include / bar.hh
1 /*
2   bar.hh -- part of GNU LilyPond
3
4   (c) 1996--2000 Han-Wen Nienhuys
5 */
6
7 #ifndef BAR_HH
8 #define BAR_HH
9
10 #include "lily-guile.hh"
11 #include "lily-proto.hh"
12
13 /**
14   A vertical bar.
15  */
16 class Bar
17 {
18 public:
19   static bool has_interface (Score_element*);
20   static void set_interface (Score_element*);
21   static Molecule compound_barline (Score_element*, String, Real height) ;
22   static Molecule simple_barline (Score_element*, Real wid, Real height) ;      
23   static SCM get_staff_bar_size (SCM);
24   static SCM brew_molecule (SCM);
25   static SCM before_line_breaking (SCM);
26 };
27 #endif // BAR_HH
28