]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/tie-specification.hh
Run grand-replace (issue 3765)
[lilypond.git] / lily / include / tie-specification.hh
index 68734adc222aeab5868c49d2605355ad94bd13f6..330fe24011f468fea812cbf68fb1cfb069f8b8db 100644 (file)
@@ -1,10 +1,20 @@
-/* 
-  tie-specification.hh -- declare  Tie_specification
-  
-  source file of the GNU LilyPond music typesetter
-  
-  (c) 2007--2009 Han-Wen Nienhuys <hanwen@lilypond.org>
-  
+/*
+  This file is part of LilyPond, the GNU music typesetter.
+
+  Copyright (C) 2007--2014 Han-Wen Nienhuys <hanwen@lilypond.org>
+
+  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 TIE_SPECIFICATION_HH
 struct Tie_specification
 {
   int position_;
-  Drul_array<Grob*> note_head_drul_;
+  Drul_array<Grob *> note_head_drul_;
   Drul_array<int> column_ranks_;
   Grob *tie_grob_;
-  
+
   bool has_manual_position_;
   bool has_manual_dir_;
   bool has_manual_delta_y_;
   bool has_accidental_;
-  
+
   Real manual_position_;
   Direction manual_dir_;
-  
+
   Tie_specification ();
   int column_span () const;
   void from_grob (Grob *);