2 directional-element-interface.cc -- implement Directional_element
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
9 #include "directional-element-interface.hh"
14 get_grob_direction (Grob *me)
16 SCM d = me->get_property ("direction");
17 if (d == ly_symbol2scm ("calculation-in-progress"))
19 programming_error ("Grob direction requested while calculation in progress. ");
22 if (!is_direction (d))
29 set_grob_direction (Grob *me, Direction d)
31 SCM sd = scm_from_int (d);
32 me->set_property ("direction", sd);