]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/arpeggio.hh
release: 1.3.96
[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 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #ifndef ARPEGGIO_HH
10 #define ARPEGGIO_HH
11
12 #include "lily-guile.hh"
13 #include "lily-proto.hh"
14 /*
15   properties:
16
17   stems -- list of stem objects, corresponding to the notes that the
18   arp has to be before.  */
19 class Arpeggio
20 {
21 public:
22   DECLARE_SCHEME_CALLBACK (brew_molecule, (SCM));
23   DECLARE_SCHEME_CALLBACK(width_callback, (SCM,SCM));
24   static bool has_interface (Score_element*);
25 };
26
27 #endif /* ARPEGGIO_HH */
28