Correct left text alignment of DynamicTextSpanner.
[lilypond.git] / lily / include / group-interface.hh
blob7a428ee150ec2363f7ea1b3774eba55a61e809b1
1 /*
2 group-interface.hh -- declare Group_interface
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
9 #ifndef GROUP_INTERFACE_HH
10 #define GROUP_INTERFACE_HH
12 #include "grob.hh"
13 #include "std-string.hh"
14 /**
15 Look at Score element ELT as thing which has a list property called
16 NAME_. Normally the list would contain Grobs, but
17 sometimes it can be different things.
19 todo: reename as list_interface?
22 struct Group_interface
24 public:
25 static int count (Grob *, SCM);
26 static void add_thing (Grob *, SCM, SCM);
29 #endif /* GROUP_INTERFACE_HH */