]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/directional-element-interface.hh
* scm/chord-name.scm: remove new-chord-name-brew-molecule ; use
[lilypond.git] / lily / include / directional-element-interface.hh
index c21a89d2ec3db7b95ffe898dc6592116b0baef9d..ea77c3dc557321bade50f1810c41abac95d91bd3 100644 (file)
@@ -3,29 +3,24 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1999 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*) ;
 };
 
-Directional_element_interface directional_element (Score_element const*);
 
 #endif /* DIRECTIONAL_ELEMENT_HH */