]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/grace-music.hh
20c6e873a9078b91581c914c4be00dc7e429aadb
[lilypond.git] / lily / include / grace-music.hh
1 /*   
2   grace-music.hh -- declare Grace_music
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef NGRACE_MUSIC_HH
11 #define NGRACE_MUSIC_HH
12
13 #include "music-wrapper.hh"
14
15 class Grace_music : public Music_wrapper
16 {
17 public:
18   VIRTUAL_COPY_CONS (Music);
19   Grace_music (SCM);
20   Grace_music ();
21 protected:
22   virtual void compress (Moment);
23   virtual Moment length_mom () const;
24   virtual Moment start_mom () const;
25 };
26
27 #endif /* GRACE_MUSIC_HH */
28