]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/spacing-interface.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / spacing-interface.hh
index c33eea09d4cf6e5f3cf5b8363f4095e7bd9d1379..0f62ac9b0fabecc933353f795c0d3a2fc079fe30 100644 (file)
@@ -3,11 +3,25 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2002--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 2002--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
+#include "grob-interface.hh"
+#include "lily-proto.hh"
+
+#ifndef SPACING_INTERFACE_HH
+#define SPACING_INTERFACE_HH
 
 struct Spacing_interface
 {
-  static bool has_interface (Grob *);
+  static Real minimum_distance (Grob *me, Grob *right_col);
+  static vector<Item*> right_note_columns (Grob *me);
+  static vector<Item*> left_note_columns (Grob *me);
+  static Item* right_column (Grob *me);
+  static Item* left_column (Grob *me);
+  static Drul_array<Skyline> skylines (Grob *me, Grob *right_col);
+  static Grob* extremal_break_aligned_grob (Grob *me, Direction, Direction, Interval*);
+
+  DECLARE_GROB_INTERFACE();
 };
 
+#endif /* SPACING_INTERFACE_HH */