]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/context-specced-music.hh
release: 1.3.106
[lilypond.git] / lily / include / context-specced-music.hh
1 /*   
2   context-specced-music.hh -- declare Context_specced_music
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef CONTEXT_SPECCED_MUSIC_HH
11 #define CONTEXT_SPECCED_MUSIC_HH
12
13 #include "music-wrapper.hh"
14
15 class Context_specced_music : public Music_wrapper
16 {
17
18 /*
19   /// The kind of translation needed for this music.  
20   String translator_type_str_;
21
22   /// what identification for the translation unit
23   String translator_id_str_;
24 */
25 public:  
26   Context_specced_music (Music*);
27   VIRTUAL_COPY_CONS(Music);
28
29 };
30 #endif /* CONTEXT_SPECCED_MUSIC_HH */
31