]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/compressed-music.hh
release: 1.1.1
[lilypond.git] / lily / include / compressed-music.hh
1 /*   
2   compressed-music.hh -- declare Compressed_music
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef COMPRESSED_MUSIC_HH
11 #define COMPRESSED_MUSIC_HH
12
13 #include "music-wrapper.hh"
14 /**
15    Tempo expansion or compression.
16  */
17 class Compressed_music : public Music_wrapper
18 {
19 public:
20   int num_i_;
21   int den_i_;
22
23   Compressed_music (int, int, Music *);
24   DECLARE_MY_RUNTIME_TYPEINFO;
25   VIRTUAL_COPY_CONS (Compressed_music, Music);
26 };
27
28 #endif /* COMPRESSED_MUSIC_HH */
29