]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/directional-element-interface.cc
(process_acknowledged_grobs): new
[lilypond.git] / lily / directional-element-interface.cc
index aadc62a4db1fe18202cfe87414daeba7860e4d2e..230bcc8cd0689289ea4ccd3de46c851523f9d4e1 100644 (file)
@@ -3,40 +3,26 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1999--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1999--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 #include "directional-element-interface.hh"
 
 
-
-
-bool
-Directional_element_interface::has_interface (Grob*me) 
-{
-  return isdir_b (me->get_grob_property ("direction"));
-}
-
 Direction
-Directional_element_interface::get (Grob*me) 
+get_grob_direction (Grob*me) 
 {
-  // return dir_;
   SCM d= me->get_grob_property ("direction");
-  if (!isdir_b (d))
+  if (!is_direction (d))
     return CENTER;
       
   return to_dir (d);
 }
 
 void
-Directional_element_interface::set (Grob*me, Direction d) 
+set_grob_direction (Grob*me, Direction d) 
 {
   SCM sd = gh_int2scm (d);
-
-  /*
-    Vain attempt to save some conses.
-   */
-  if (me->get_grob_property ("direction") != sd)
-    me->set_grob_property ("direction", sd);
+  me->set_grob_property ("direction", sd);
 }