]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/volta-spanner.hh
release: 1.3.10
[lilypond.git] / lily / include / volta-spanner.hh
1 /*
2   volta-spanner.hh -- part of GNU LilyPond
3
4   (c) 1997--1999 Jan Nieuwenhuizen <janneke@gnu.org>
5 */
6
7 #ifndef VOLTA_SPANNER_HH
8 #define VOLTA_SPANNER_HH
9
10
11 #include "pointer.hh"
12 #include "spanner.hh"
13
14 /** Volta bracket with number */
15
16 class Volta_spanner : public Spanner
17 {
18 public:
19   Volta_spanner ();
20  
21   void add_column (Note_column*);
22   void add_bar (Bar*);
23  
24   String number_str_;
25   bool last_b_;
26
27  
28 protected:
29   virtual Molecule* do_brew_molecule_p () const;
30   VIRTUAL_COPY_CONS (Score_element);
31
32   virtual void do_add_processing ();
33   static  Interval dim_callback (Dimension_cache const*);
34   virtual void do_post_processing ();
35 };
36
37 #endif // VOLTA_SPANNER_HH
38