]> git.donarmstrong.com Git - lilypond.git/blob - lily/output-property.cc
release: 1.3.73
[lilypond.git] / lily / output-property.cc
1 /*   
2   output-property.cc --  implement Output_property
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9 #include "output-property.hh"
10 #include "lily-guile.hh"
11
12 Output_property::Output_property(SCM pred, SCM sym, SCM val)
13 {
14   set_mus_property ("predicate", pred);
15   set_mus_property ("symbol", sym);
16   set_mus_property ("value", val);
17 }
18