X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=lily%2Finclude%2Fgrob-array.hh;h=1ef883110c9757a63452b1e1a12a9ce9b37c6fb5;hb=05f05a51ca0078ce9a8c87cbf30ac7fbd4def706;hp=6e49dabb56f71481c368c146883e853331013b76;hpb=8c97b5bb732d4623a3588add0c3c4d3c2510f5bf;p=lilypond.git diff --git a/lily/include/grob-array.hh b/lily/include/grob-array.hh index 6e49dabb56..1ef883110c 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--2011 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,15 +43,15 @@ 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);