]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/arpeggio.hh
Fix #341.
[lilypond.git] / lily / include / arpeggio.hh
1 /*
2   arpegio.hh -- declare Arpeggio
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2000--2007 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #ifndef ARPEGGIO_HH
10 #define ARPEGGIO_HH
11
12 #include "lily-proto.hh"
13 #include "grob-interface.hh"
14
15
16 class Arpeggio
17 {
18 public:
19   DECLARE_SCHEME_CALLBACK (print, (SCM));
20   DECLARE_SCHEME_CALLBACK (brew_chord_bracket, (SCM));
21   DECLARE_SCHEME_CALLBACK (width, (SCM));
22   DECLARE_SCHEME_CALLBACK (height, (SCM));
23   DECLARE_SCHEME_CALLBACK (pure_height, (SCM, SCM, SCM));
24   DECLARE_GROB_INTERFACE();
25 };
26
27 #endif /* ARPEGGIO_HH */
28