]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/staff-bracket.hh
release: 1.0.8
[lilypond.git] / lily / include / staff-bracket.hh
1
2 /*   
3   staff-bracket.hh -- declare  Staff_bracket
4   
5   source file of the GNU LilyPond music typesetter
6   
7   (c) 1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8   
9  */
10
11 #ifndef STAFF_BRACKET_HH
12 #define STAFF_BRACKET_HH
13 #include "span-score-bar.hh"
14 class Staff_bracket : public Span_score_bar
15 {
16 public:
17   DECLARE_MY_RUNTIME_TYPEINFO;
18   SCORE_ELEMENT_CLONE(Staff_bracket);
19
20 protected:
21   virtual Interval do_width() const;
22   virtual void do_post_processing();
23   virtual Atom get_bar_sym (Real) const;
24 };
25
26
27 #endif /* STAFF_BRACKET_HH */
28