]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/bar.hh
release: 1.1.18
[lilypond.git] / lily / include / bar.hh
1 /*
2   bar.hh -- part of GNU LilyPond
3
4   (c) 1996--1998 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   
20   VIRTUAL_COPY_CONS(Score_element);
21   Bar ();
22
23 protected:
24   virtual void do_pre_processing ();
25   virtual Molecule* do_brew_molecule_p () const;
26
27 private:
28   void do_print () const;
29 };
30 #endif // BAR_HH
31