X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fgrob-array.hh;h=33d458cea8c0c1f378667873af58b289f79444a0;hb=f4abbfff5f0d985a457e15586dbcc3ae473b0dee;hp=f94f2d33cf40f1ae4b730d154db74801866283a0;hpb=0e5d83a9ceb4a143f83d22406d7eb816314ff9f7;p=lilypond.git diff --git a/lily/include/grob-array.hh b/lily/include/grob-array.hh index f94f2d33cf..33d458cea8 100644 --- a/lily/include/grob-array.hh +++ b/lily/include/grob-array.hh @@ -1,9 +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--2014 Han-Wen Nienhuys - (c) 2005--2009 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 @@ -15,7 +26,7 @@ class Grob_array { - vector grobs_; + vector grobs_; bool ordered_; DECLARE_SIMPLE_SMOBS (Grob_array); @@ -32,16 +43,16 @@ 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 */