]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/bar-column.hh
release: 1.0.1
[lilypond.git] / lily / include / bar-column.hh
1 /*
2   bar-column.hh -- declare Bar_column
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef BAR_COLUMN_HH
11 #define BAR_COLUMN_HH
12
13 #include "script-column.hh"
14
15 /**  
16   The scripts  over  a and the bar itself.
17  */
18 class Bar_column : public Script_column {
19     Bar * bar_l_;
20
21 public:
22     Bar_column();
23     void set_bar (Bar*);
24 protected:
25     SCORE_ELEMENT_CLONE(Bar_column);
26     void do_substitute_dependency (Score_element*,Score_element*);
27     DECLARE_MY_RUNTIME_TYPEINFO;
28 };
29
30 #endif // BAR_COLUMN_HH