]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/volta-spanner.hh
a4f32c035463e97c89f91ddb363e7541e3a0cd30
[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_p () const;
26   VIRTUAL_COPY_CONS (Score_element);
27
28   virtual void do_add_processing ();
29   static  Interval dim_callback (Dimension_cache const*);
30   virtual void do_post_processing ();
31 };
32
33 #endif // VOLTA_SPANNER_HH
34