From: hanwen 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.23~979 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d9332e7c992bf3f689648544b2e22ef0cff0fe91;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)