]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/context-specced-music.hh
release: 1.3.37
[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 public:
18   /// The kind of translation needed for this music.  
19   String translator_type_str_;
20
21   /// what identification for the translation unit
22   String translator_id_str_;
23   Context_specced_music (Music*);
24   VIRTUAL_COPY_CONS(Music);
25
26 };
27 #endif /* CONTEXT_SPECCED_MUSIC_HH */
28