]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/event.hh
41d24d204175ebefac40e88b0226a5aedab5fa5e
[lilypond.git] / lily / include / event.hh
1 /*
2   event.hh -- declare Event baseclasses.
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #ifndef EVENT_HH
10 #define EVENT_HH
11
12 #include "input.hh"
13 #include "music.hh"
14 #include "duration.hh"
15 #include "pitch.hh"
16
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
20 {
21 public:
22   Event (SCM);
23   VIRTUAL_COPY_CONSTRUCTOR (Music, Event);
24   DECLARE_SCHEME_CALLBACK (length_callback, (SCM));
25 };
26
27 #endif