]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/grace-music.hh
* Another grand 2003 update.
[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--2003 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 ();
20 protected:
21   virtual void compress (Moment);
22   virtual Moment get_length () const;
23   virtual Moment start_mom () const;
24 };
25
26 #endif /* GRACE_MUSIC_HH */
27