]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/music-wrapper.hh
cdecc0b5bafdaad4ddb24354c6da80ef46a0b6fe
[lilypond.git] / lily / include / music-wrapper.hh
1 /*   
2   music-wrapper.hh -- declare Music_wrapper
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 MUSIC_WRAPPER_HH
11 #define MUSIC_WRAPPER_HH
12
13 #include "music.hh"
14 #include "musical-pitch.hh"
15
16 class Music_wrapper : public Music
17 {
18 public:
19   Music * element_p_;
20   Music_wrapper (Music*);
21   virtual void transpose (Musical_pitch);
22   virtual void do_print () const;
23   DECLARE_MY_RUNTIME_TYPEINFO;
24   VIRTUAL_COPY_CONS (Music_wrapper, Music);
25   Music_wrapper (Music_wrapper const&);
26   virtual MInterval time_int () const;
27   virtual ~Music_wrapper ();
28 };
29
30
31
32 #endif /* MUSIC_WRAPPER_HH */
33