]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/directional-element-interface.hh
* mf/GNUmakefile: always trace pfa fonts.
[lilypond.git] / lily / include / directional-element-interface.hh
index d3e6434529c801fa47a37627ce64349c22cb5166..ea77c3dc557321bade50f1810c41abac95d91bd3 100644 (file)
@@ -3,26 +3,22 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1999--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 #ifndef DIRECTIONAL_ELEMENT_HH
 #define DIRECTIONAL_ELEMENT_HH
 
-#include "score-element.hh"
+#include "grob.hh"
 
 struct Directional_element_interface 
 {
-  
 public:
-  Score_element *elt_l_;
-  
-  Directional_element_interface (Score_element const *);
-  void set  (Direction d);
-  Direction get () const;
-  bool has_interface_b () const;
-  // bool set_interface ();
+
+  static void set (Grob*,Direction d);
+  static Direction get (Grob*) ;
+  static bool has_interface (Grob*) ;
 };