]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/volta-spanner.hh
e76d6e0537b8288188dd7fe12745ff9c4db2f012
[lilypond.git] / lily / include / volta-spanner.hh
1 /*
2   volta-spanner.hh -- part of GNU LilyPond
3
4   (c) 1997--2000 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 protected:
25   virtual Molecule do_brew_molecule () const;
26   VIRTUAL_COPY_CONS (Score_element);
27
28   virtual void do_add_processing ();
29   virtual void after_line_breaking ();
30 };
31
32 #endif // VOLTA_SPANNER_HH
33