]> git.donarmstrong.com Git - lilypond.git/blob - lily/context-specced-music.cc
f0373b2dca98fc05145513a63fd6b1c1aee63e45
[lilypond.git] / lily / context-specced-music.cc
1 /*   
2   context-specced-music.cc --  implement Context_specced_music
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9 #include "context-specced-music.hh"
10 Context_specced_music::Context_specced_music (SCM m)
11   : Music_wrapper (m)
12 {
13   set_mus_property ("type",
14                     ly_symbol2scm ("context-specced-music"));
15 }
16
17
18 Context_specced_music::Context_specced_music ()
19 {
20   set_mus_property ("type",
21                     ly_symbol2scm ("context-specced-music"));
22 }
23
24 ADD_MUSIC (Context_specced_music);