]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/bar.hh
release: 0.0.67
[lilypond.git] / lily / include / bar.hh
1 /*
2   bar.hh -- part of GNU 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   TODO: connections with pre and postbreak
12  */
13 class Bar:public Item {
14 public:
15     String type;
16     
17     NAME_MEMBERS();
18     Bar(String type);
19 private:
20     void do_print() const;
21     Molecule*brew_molecule_p()const;
22 };
23 #endif // BAR_HH
24