]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/percent-repeat-item.hh
* The grand 2005-2006 replace.
[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--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef PERCENT_REPEAT_ITEM_HH
10 #define PERCENT_REPEAT_ITEM_HH
11
12 #include "grob.hh"
13
14 class Percent_repeat_item_interface
15 {
16 public:
17   static bool has_interface (Grob *);
18   DECLARE_SCHEME_CALLBACK (beat_slash, (SCM));
19   DECLARE_SCHEME_CALLBACK (double_percent, (SCM));
20   static Stencil x_percent (Grob *, int, Real, Real);
21   static Stencil brew_slash (Grob *);
22 };
23
24 #endif /* PERCENT_REPEAT_ITEM_HH */
25