]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/bar.hh
patch::: 1.1.27.jcn3: geen genade
[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   bool at_line_start_b_;
19
20   
21   VIRTUAL_COPY_CONS(Score_element);
22   Bar ();
23
24 protected:
25   virtual void do_pre_processing ();
26   virtual Molecule* do_brew_molecule_p () const;
27
28 private:
29   void do_print () const;
30 };
31 #endif // BAR_HH
32