X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fgrob-array.hh;h=1ef883110c9757a63452b1e1a12a9ce9b37c6fb5;hb=05f05a51ca0078ce9a8c87cbf30ac7fbd4def706;hp=f0f6b9072c5e3e7209a043bb78a4c7fdd4b90312;hpb=87bcea3a1d67afec13b49c2facd9fb28cc37277b;p=lilypond.git diff --git a/lily/include/grob-array.hh b/lily/include/grob-array.hh index f0f6b9072c..1ef883110c 100644 --- a/lily/include/grob-array.hh +++ b/lily/include/grob-array.hh @@ -1,10 +1,20 @@ /* - grob-array.hh -- declare Grob_array + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 2005--2011 Han-Wen Nienhuys - (c) 2005 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 + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ #ifndef GROB_ARRAY_HH @@ -12,37 +22,38 @@ #include "lily-proto.hh" #include "smobs.hh" -#include "parray.hh" +#include "std-vector.hh" class Grob_array { - Link_array grobs_; + vector grobs_; bool ordered_; - - DECLARE_SIMPLE_SMOBS(Grob_array,); + + DECLARE_SIMPLE_SMOBS (Grob_array); Grob_array (); public: bool ordered () const { return ordered_; } void set_ordered (bool b) { ordered_ = b; } - Item *item (int i); - Spanner *spanner (int i); - Grob * grob (int i) { return grobs_.elem (i); } - int size () const { return grobs_.size(); } - bool is_empty () const; - void clear (); - void add (Grob *x) { grobs_.push (x); } - void set_array (Link_array const &src); - Link_array &array_reference (); - Link_array const &array () const; + Item *item (vsize i); + Spanner *spanner (vsize i); + Grob *grob (vsize i) { return grobs_.at (i); } + vsize size () const { return grobs_.size (); } + bool empty () const; + 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; static SCM make_array (); }; DECLARE_UNSMOB (Grob_array, grob_array); -Link_array 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 */