(editor-command-template-alist): Use char iso
[lilypond/patrick.git] / lily / include / event.hh
blob41d24d204175ebefac40e88b0226a5aedab5fa5e
1 /*
2 event.hh -- declare Event baseclasses.
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
9 #ifndef EVENT_HH
10 #define EVENT_HH
12 #include "input.hh"
13 #include "music.hh"
14 #include "duration.hh"
15 #include "pitch.hh"
17 /* An atom of musical information. This is an abstract class for any
18 piece of music that does not contain other Music. */
19 class Event : public Music
21 public:
22 Event (SCM);
23 VIRTUAL_COPY_CONSTRUCTOR (Music, Event);
24 DECLARE_SCHEME_CALLBACK (length_callback, (SCM));
27 #endif