]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/vertical-group-spanner.hh
release: 1.0.1
[lilypond.git] / lily / include / vertical-group-spanner.hh
1 /*
2   vertical-group-spanner.hh -- declare Vertical_group_spanner
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 SPAN_VERTICAL_GROUP_HH
11 #define SPAN_VERTICAL_GROUP_HH
12
13 #include "axis-group-spanner.hh"
14 #include "vertical-group-element.hh"
15
16 /** An element which groups a line. 
17  */
18 class Vertical_group_spanner : public Axis_group_spanner, public Vertical_group_element
19 {
20 protected:
21   SCORE_ELEMENT_CLONE(Vertical_group_spanner);
22   virtual void do_junk_links () { Axis_group_spanner::do_junk_links (); }
23   virtual void do_unlink () { Axis_group_spanner::do_unlink (); }
24 public:
25   DECLARE_MY_RUNTIME_TYPEINFO;
26   Vertical_group_spanner ();
27 };
28
29
30 #endif // SPAN_VERTICAL_GROUP_HH