]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/bar.hh
release: 0.1.11
[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   int spanned_i_;
19     
20   DECLARE_MY_RUNTIME_TYPEINFO;
21   SCORE_ELEM_CLONE(Bar);
22   Bar();
23 private:
24   void do_print() const;
25 protected:
26   virtual void do_pre_processing();
27   Molecule*brew_molecule_p() const;
28 };
29 #endif // BAR_HH
30