]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/pointer-group-interface.hh
Run grand-replace (issue 3765)
[lilypond.git] / lily / include / pointer-group-interface.hh
index 581d63529904848f889a756f6aea73e29ffb96c9..356b29656cefb8f0e451cdd39cb2a2ecb97e16aa 100644 (file)
@@ -1,9 +1,20 @@
 /*
-  pointer-group-interface.hh -- declare Pointer_group_interface
+  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 <hanwen@xs4all.nl>
 
-  (c) 2005--2007 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
+  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 <http://www.gnu.org/licenses/>.
 */
 
 #ifndef POINTER_GROUP_INTERFACE_HH
@@ -21,12 +32,12 @@ public:
   static void add_grob (Grob *, SCM nm, SCM x);
   static void add_unordered_grob (Grob *, SCM nm, Grob *);
   static void set_ordered (Grob *, SCM, bool);
-  static Grob_array *get_grob_array (Grob*, SCM);
-  static Grob *find_grob (Grob*, SCM, bool (*pred) (Grob*));
+  static Grob_array *get_grob_array (Grob *, SCM);
+  static Grob *find_grob (Grob *, SCM, bool (*pred) (Grob *));
 };
 
-vector<Grob*> const &internal_extract_grob_array (Grob const *elt, SCM symbol);
-vector<Item*> internal_extract_item_array (Grob const *elt, SCM symbol);
+vector<Grob *> const &internal_extract_grob_array (Grob const *elt, SCM symbol);
+vector<Item *> internal_extract_item_array (Grob const *elt, SCM symbol);
 
 #define extract_grob_array(x, prop) internal_extract_grob_array (x, ly_symbol2scm (prop))
 #define extract_item_array(x, prop) internal_extract_item_array (x, ly_symbol2scm (prop))
@@ -35,9 +46,9 @@ vector<Item*> internal_extract_item_array (Grob const *elt, SCM symbol);
   This is dubious coding style, but lets not risk that we change the
   representation of grob sets again.
 */
-#define extract_grob_set(grob, prop, set)                              \
+#define extract_grob_set(grob, prop, set)                               \
   vector<Grob*> const &set (internal_extract_grob_array (grob, ly_symbol2scm (prop)))
-#define extract_item_set(grob, prop, set)                              \
+#define extract_item_set(grob, prop, set)                               \
   vector<Item*> set (internal_extract_item_array (grob, ly_symbol2scm (prop)))
 
 #endif /* POINTER_GROUP_INTERFACE_HH */