]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/context-specced-music.hh
release: 1.1.41
[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 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.  This doesn't
19     make sense for simple (ie non-list) music, but it does no harm
20     here. Yes, it did harm Music_sequence: you can forget to copy it.
21       
22     */
23   String translator_type_str_;
24
25   /// what identification for the translation unit
26   String translator_id_str_;
27   Context_specced_music (Music*);
28   VIRTUAL_COPY_CONS(Music);
29
30 };
31 #endif /* CONTEXT_SPECCED_MUSIC_HH */
32