]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/percent-repeat-item.hh
* Another grand 2003 update.
[lilypond.git] / lily / include / percent-repeat-item.hh
1 /*   
2   percent-repeat-item.hh -- declare Percent_repeat_item_interface
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c)  2001--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef PERCENT_REPEAT_ITEM_HH
11 #define PERCENT_REPEAT_ITEM_HH
12
13 #include "grob.hh"
14
15 class Percent_repeat_item_interface
16 {
17 public:
18   static bool has_interface (Grob*);
19   DECLARE_SCHEME_CALLBACK (beat_slash, (SCM ));  
20   DECLARE_SCHEME_CALLBACK (double_percent, (SCM ));
21   static Molecule x_percent (Grob*,int,Real,Real );
22   static Molecule brew_slash (Grob*);
23 };
24
25 #endif /* PERCENT_REPEAT_ITEM_HH */
26