]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/rhythmic-head.hh
patch::: 1.3.62.hwn1
[lilypond.git] / lily / include / rhythmic-head.hh
index 2435085d57cc27e1fae565d887f84c5c6a9743e8..8145bd911827b9611d598fb4d520ecc73007145f 100644 (file)
 
 #include "item.hh"
 
+/*
+  Properties
+  
+  duration-log -- 2-log of the notehead duration
+
+  dot -- reference to Dots object.
 
+*/
 class Rhythmic_head : public Item
 {
 public:
+
+  /*
+    Typically not used, since Rhythmic_head is not breakable.
+   */
+  VIRTUAL_COPY_CONS(Rhythmic_head);
   int balltype_i () const;
 
   void add_dots (Dots *);
   Stem * stem_l () const;
   Dots * dots_l () const;
   int dot_count () const;
-protected:
-  virtual void after_line_breaking ();
+
+  SCM member_after_line_breaking ();
+  static SCM after_line_breaking (SCM);
+  Rhythmic_head (SCM s);
 };
 
 #endif // RHYTHMIC_HEAD_HH