]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/axis-group-interface.hh
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / include / axis-group-interface.hh
index 04da19759d4c8f661756ddbfbaee737984719de2..94e1a256d9dc0da75e9bb47e24bfb4372cbbce5b 100644 (file)
@@ -9,6 +9,7 @@
 #ifndef AXIS_GROUP_INTERFACE_HH
 #define AXIS_GROUP_INTERFACE_HH
 
+#include "std-vector.hh"
 #include "lily-proto.hh"
 #include "lily-guile.hh"
 
@@ -19,13 +20,13 @@ struct Axis_group_interface
   static SCM generic_group_extent (Grob *me, Axis a);
   DECLARE_SCHEME_CALLBACK (width, (SCM smob));
   DECLARE_SCHEME_CALLBACK (height, (SCM smob));
-  static Interval relative_group_extent (Link_array__Grob_ const &list,
+  static Interval relative_group_extent (vector<Grob*> const &list,
                                         Grob *common, Axis);
 
   static void add_element (Grob *me, Grob *);
   static void set_axes (Grob *, Axis, Axis);
   static bool has_axis (Grob *, Axis);
-  static void get_children (Grob *, Link_array__Grob_ *);
+  static void get_children (Grob *, vector<Grob*> *);
   static bool has_interface (Grob *);
 };