]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/bar.hh
release: 0.1.31
[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   A vertical bar.
12   
13   TODO: connections with pre and postbreak
14  */
15 class Bar:public Item {
16 public:
17   String type_str_;
18
19   DECLARE_MY_RUNTIME_TYPEINFO;
20   SCORE_ELEM_CLONE(Bar);
21   Bar();
22 private:
23   void do_print() const;
24 protected:
25   virtual void do_pre_processing();
26   Molecule*brew_molecule_p() const;
27 };
28 #endif // BAR_HH
29