From: Han-Wen Nienhuys Date: Sun, 14 Nov 2004 14:35:03 +0000 (+0000) Subject: * lily/include/global-context.hh (Context): take \score key upon init. X-Git-Tag: release/2.5.14~566 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=64e406f4e97bc828e44574576d392f6000beb972;p=lilypond.git * lily/include/global-context.hh (Context): take \score key upon init. * lily/context.cc (Context): take key argument in ctor. (create_context): new function * lily/grob.cc (Grob): take key argument in ctor. --- diff --git a/lily/grob.cc b/lily/grob.cc index 541663d30f..66a0caf8cd 100644 --- a/lily/grob.cc +++ b/lily/grob.cc @@ -673,6 +673,12 @@ ly_scm2grobs (SCM lst) return arr; } +Object_key const * +Grob::get_key () const +{ + return key_; +} + /** Return SCM list of Grob array A */ SCM ly_grobs2scm (Link_array a)