]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/rhythmic-head.hh
release: 1.3.13
[lilypond.git] / lily / include / rhythmic-head.hh
index e516b2cdc5ac16f6eed518fe126e1eebdb288c08..9013c0eb42ca6c663821d4813793db747cda195e 100644 (file)
 #define RHYTHMIC_HEAD_HH
 
 #include "item.hh"
-#include "staff-symbol-referencer.hh"
 
-class Rhythmic_head : public Item, public Staff_symbol_referencer
+
+class Rhythmic_head : public Item
 {
 public:
-  Stem * stem_l_;
-  int balltype_i_;
-  int position_i_;
-
-  Dots * dots_l_;
+  int balltype_i () const;
 
   void add_dots (Dots *);
-  Rhythmic_head ();
-
+  Stem * stem_l ()const;
+  Dots * dots_l ()const;
   int dots_i ()const;
-  virtual int position_i () const;
 protected:
   virtual void do_post_processing ();
-  virtual void do_pre_processing ();
-  virtual void do_print () const;
-  virtual void do_substitute_element_pointer (Score_element*,Score_element*);
 };
 
 #endif // RHYTHMIC_HEAD_HH