]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/audio-staff.hh
Run grand replace for 2015.
[lilypond.git] / lily / include / audio-staff.hh
index cdce0298fe7122cca7e774e0ae38f47bc3966b4e..13124cfc09162ce4e1216b1644b9c5feaf8bfd41 100644 (file)
@@ -1,7 +1,20 @@
 /*
-  audio-staff.hh -- declare Audio_staff
+  This file is part of LilyPond, the GNU music typesetter.
 
-  (c) 1996--2007 Jan Nieuwenhuizen <janneke@gnu.org>
+  Copyright (C) 1996--2015 Jan Nieuwenhuizen <janneke@gnu.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 AUDIO_STAFF_HH
 
 struct Audio_staff : public Audio_element
 {
-  void add_audio_item (Audio_item *l);
-  void output (Midi_stream &midi_stream_r, int track);
+  void add_audio_item (Audio_item *ai);
+  void output (Midi_stream &midi_stream_r, int track, bool port, int start_tick);
 
   Audio_staff ();
-  
-  vector<Audio_item*> audio_items_;
-  int channel_;
+
+  bool percussion_;
+  bool merge_unisons_;
+  vector<Audio_item *> audio_items_;
 };
 
 #endif // AUDIO_STAFF_HH