lilypond-1.4.2
[lilypond.git] / lily / context-specced-music.cc
blobf0373b2dca98fc05145513a63fd6b1c1aee63e45
1 /*
2 context-specced-music.cc -- implement Context_specced_music
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
9 #include "context-specced-music.hh"
10 Context_specced_music::Context_specced_music (SCM m)
11 : Music_wrapper (m)
13 set_mus_property ("type",
14 ly_symbol2scm ("context-specced-music"));
18 Context_specced_music::Context_specced_music ()
20 set_mus_property ("type",
21 ly_symbol2scm ("context-specced-music"));
24 ADD_MUSIC (Context_specced_music);