]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/bar.hh
release: 0.0.39-1
[lilypond.git] / lily / include / bar.hh
1 /*
2   bar.hh -- part of LilyPond
3
4   (c) 1996,97 Han-Wen Nienhuys
5 */
6
7 #ifndef BAR_HH
8 #define BAR_HH
9 #include "item.hh"
10
11 struct Bar: Item {
12     String type;
13     
14     Bar(String type);
15 NAME_MEMBERS(Bar);
16     void do_print() const;
17     Molecule*brew_molecule_p()const;
18 };
19 #endif // BAR_HH
20