lilypond-1.3.16
[lilypond.git] / lily / include / time-scaled-music.hh
blob98fb5286ce60706a90027b6456ac7a419d1fd4f0
1 /*
2 compressed-music.hh -- declare Time_scaled_music
4 source file of the GNU LilyPond music typesetter
6 (c) 1998--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
10 #ifndef Time_scaled_music_HH
11 #define Time_scaled_music_HH
13 #include "music-wrapper.hh"
14 /**
15 Tempo expansion or compression.
17 class Time_scaled_music : public Music_wrapper
19 public:
20 int num_i_;
21 int den_i_;
23 Time_scaled_music (int, int, Music *);
25 VIRTUAL_COPY_CONS(Music);
28 #endif /* Time_scaled_music_HH */