]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/staff-symbol-referencer.hh
release: 1.3.68
[lilypond.git] / lily / include / staff-symbol-referencer.hh
index 589f73e0b49ee833f65d8f41194d09bbc5f58f15..202f27f0ded4214fe476b2e74e6c122b10c920b3 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 class Staff_symbol_referencer_interface 
 {
 public:
-  Score_element * elt_l_;
+  Score_element * elt_l_;      // junkme.
   Staff_symbol_referencer_interface (Score_element const*);
-  void set_interface ();
-  bool has_interface_b ();
+  static void set_interface (Score_element*);
+  static bool has_interface_b (Score_element*);
   void set_position (Real);
-  static Real callback (Dimension_cache const*); 
+  static Real callback (Score_element *, Axis a);
 
   /**
      Leading are the lead strips between the sticks (lines) of
@@ -35,14 +35,10 @@ public:
   
   Real staff_space () const;
   Staff_symbol * staff_symbol_l () const;
-  int lines_i () const;
+  int line_count () const;
   Real position_f () const;
 };
 
 int compare_position (Score_element *const&,Score_element *const&); 
-
-
-Staff_symbol_referencer_interface staff_symbol_referencer_interface  (Score_element const*);
-
 #endif /* STAFF_SYMBOL_REFERENCER_HH */