]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/grob-array.hh
Run grand-replace (issue 3765)
[lilypond.git] / lily / include / grob-array.hh
index c51f88ef02cb9a744441223a4f0550621ba364e6..958c59d55e0707d486ec5731dda7cb433861a09b 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2005--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  Copyright (C) 2005--2014 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
   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<Grob*> grobs_;
+  vector<Grob *> 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<Grob*> const &src);
-  vector<Grob*> &array_reference ();
-  vector<Grob*> const &array () const;
+  void set_array (vector<Grob *> const &src);
+  vector<Grob *> &array_reference ();
+  vector<Grob *> const &array () const;
   static SCM make_array ();
 };
 
 DECLARE_UNSMOB (Grob_array, grob_array);
 
-vector<Grob*> const &ly_scm2link_array (SCM x);
+vector<Grob *> 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 */