]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/bar.hh
release: 1.3.29
[lilypond.git] / lily / include / bar.hh
1 /*
2   bar.hh -- part of GNU LilyPond
3
4   (c) 1996--2000 Han-Wen Nienhuys
5 */
6
7 #ifndef BAR_HH
8 #define BAR_HH
9 #include "item.hh"
10
11 /**
12   A vertical bar.
13  */
14 class Bar:public Item {
15 public:
16   VIRTUAL_COPY_CONS(Score_element);
17   Bar();
18 protected:
19   virtual void do_pre_processing ();
20   virtual Molecule  do_brew_molecule () const;
21   virtual Real get_bar_size () const;
22 };
23 #endif // BAR_HH
24