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