]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/rhythmic-head.cc
* flower
[lilypond.git] / lily / rhythmic-head.cc
index d9abe900101090f061f7333957c730aa40f0d2be..7c177452cf290383e9ee96f6086d596e785ce119 100644 (file)
 #include "staff-symbol-referencer.hh"
 #include "item.hh"
 
-Item*
-Rhythmic_head::get_dots (Grob*me) 
+Item *
+Rhythmic_head::get_dots (Grob *me)
 {
   SCM s = me->get_property ("dot");
   return unsmob_item (s);
 }
 
-Item*
-Rhythmic_head::get_stem (Grob*me) 
+Item *
+Rhythmic_head::get_stem (Grob *me)
 {
   SCM s = me->get_property ("stem");
   return unsmob_item (s);
 }
 
 int
-Rhythmic_head::dot_count (Grob*me) 
+Rhythmic_head::dot_count (Grob *me)
 {
   return get_dots (me)
     ? scm_to_int (get_dots (me)->get_property ("dot-count")) : 0;
 }
 
 void
-Rhythmic_head::set_dots (Grob*me, Item *dot)
+Rhythmic_head::set_dots (Grob *me, Item *dot)
 {
   me->set_property ("dot", dot->self_scm ());
 }
 
 int
-Rhythmic_head::duration_log (Grob*me) 
+Rhythmic_head::duration_log (Grob *me)
 {
   SCM s = me->get_property ("duration-log");
   return scm_is_number (s) ? scm_to_int (s) : 0;
 }
 
 ADD_INTERFACE (Rhythmic_head, "rhythmic-head-interface",
-  "Note head or rest",
-  "dot stem duration-log");
+              "Note head or rest",
+              "dot stem duration-log");