* Documentation/user/refman.itely: remove superfluous -'s
[lilypond.git] / lily / include / music-wrapper.hh
blob78530642cea605d002261c3447a8a40aafb5cbfd
1 /*
2 music-wrapper.hh -- declare Music_wrapper
4 source file of the GNU LilyPond music typesetter
6 (c) 1998--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
10 #ifndef MUSIC_WRAPPER_HH
11 #define MUSIC_WRAPPER_HH
13 #include "music.hh"
14 #include "pitch.hh"
16 /** A Music that modifies an existing Music. This data structure
17 corresponds to a production that takes a single Music argument,
19 Music: STUFF Music
22 class Music_wrapper : public Music
24 public:
25 Music_wrapper ();
26 Music * element () const;
28 VIRTUAL_COPY_CONS (Music);
29 virtual Moment get_length () const;
30 virtual Moment start_mom () const;
36 #endif /* MUSIC_WRAPPER_HH */