]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/bar.hh
release: 1.1.32
[lilypond.git] / lily / include / bar.hh
1 /*
2   bar.hh -- part of GNU LilyPond
3
4   (c) 1996--1999 Han-Wen Nienhuys
5 */
6
7 #ifndef BAR_HH
8 #define BAR_HH
9 #include "item.hh"
10 /**
11   A vertical bar.
12  */
13 class Bar:public Item {
14 public:
15   String type_str_;
16   bool at_line_start_b_;
17
18   
19   VIRTUAL_COPY_CONS(Score_element);
20   Bar ();
21
22 protected:
23   virtual void do_pre_processing ();
24   virtual Molecule* do_brew_molecule_p () const;
25
26 private:
27   void do_print () const;
28 };
29 #endif // BAR_HH
30