]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/key-item.hh
release: 1.3.34
[lilypond.git] / lily / include / key-item.hh
index 55f320c9c9bed87d35eeae45b52700c0e7603822..d8a7f295a05f5f5948b0ce5d42ec51af045d46ae 100644 (file)
 #include "array.hh"
 
 
-/// An item which places accidentals at the start of the line
+/** An item which places accidentals at the start of the line
+
+    TODO: Schemify me.
+ */
 class Key_item :public  Item
 {
   Array<int> pitch_arr_;
   Array<int> acc_arr_;
   Array<int> old_pitch_arr_;
   Array<int> old_acc_arr_;
-  int c0_position_;
-
 
 public:
-  bool multi_octave_b_;  
-
-  int get_c_position () const;
-    
-  
   VIRTUAL_COPY_CONS(Score_element);
-
   Key_item ();
   void add (int pitch, int acc);
   void add_old (int pitch, int acc);
-  void set_c_position (int);
+
   int calculate_position(int p, int a) const;
 
 protected: