X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fgrob-array.hh;h=c21fc3cf502e285c901e067801776521d694850f;hb=6421a3ea12cf519b165afc3700a86058bdcc381d;hp=cb2d2f56c1ff682a375bc82a32def1e0ae8bf6e7;hpb=a6bd229f7fe1dc4a03478e14ccc0c0c66b225061;p=lilypond.git diff --git a/lily/include/grob-array.hh b/lily/include/grob-array.hh index cb2d2f56c1..c21fc3cf50 100644 --- a/lily/include/grob-array.hh +++ b/lily/include/grob-array.hh @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2005--2010 Han-Wen Nienhuys + Copyright (C) 2005--2012 Han-Wen Nienhuys LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -26,7 +26,7 @@ class Grob_array { - vector grobs_; + vector grobs_; bool ordered_; DECLARE_SIMPLE_SMOBS (Grob_array); @@ -43,16 +43,17 @@ public: void remove_duplicates (); void clear (); void add (Grob *x) { grobs_.push_back (x); } - void set_array (vector const &src); - vector &array_reference (); - vector const &array () const; + void set_array (vector const &src); + vector &array_reference (); + vector const &array () const; static SCM make_array (); }; DECLARE_UNSMOB (Grob_array, grob_array); -vector const &ly_scm2link_array (SCM x); +vector const &ly_scm2link_array (SCM x); SCM grob_list_to_grob_array (SCM lst); +SCM grob_array_to_list (Grob_array *array); #endif /* GROB_ARRAY_HH */