]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/drum-note-engraver.cc
Imported Upstream version 2.14.2
[lilypond.git] / lily / drum-note-engraver.cc
index 1309f448d3c18cc7e806f0c6b4d3df3e709021c4..605876ef6081448b2c21d11196c31099bff1b571 100644 (file)
@@ -1,7 +1,20 @@
 /*
-  drum-note-engraver.cc
+  This file is part of LilyPond, the GNU music typesetter.
 
-  (c) 1997--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  Copyright (C) 1997--2011 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/>.
 */
 
 #include <cctype>
@@ -22,9 +35,8 @@ using namespace std;
 
 class Drum_notes_engraver : public Engraver
 {
-  vector<Item*> notes_;
-  vector<Item*> scripts_;
-  vector<Stream_event*> events_;
+  vector<Item *> scripts_;
+  vector<Stream_event *> events_;
 
 public:
   TRANSLATOR_DECLARATIONS (Drum_notes_engraver);
@@ -89,8 +101,6 @@ Drum_notes_engraver::process_music ()
              scripts_.push_back (p);
            }
        }
-
-      notes_.push_back (note);
     }
 }
 
@@ -124,16 +134,13 @@ Drum_notes_engraver::acknowledge_note_column (Grob_info inf)
 void
 Drum_notes_engraver::stop_translation_timestep ()
 {
-  notes_.clear ();
   scripts_.clear ();
-
   events_.clear ();
 }
 
 ADD_ACKNOWLEDGER (Drum_notes_engraver, stem);
 ADD_ACKNOWLEDGER (Drum_notes_engraver, note_column);
 
-
 ADD_TRANSLATOR (Drum_notes_engraver,
                /* doc */
                "Generate drum note heads.",
@@ -148,4 +155,3 @@ ADD_TRANSLATOR (Drum_notes_engraver,
                /* write */
                ""
                );
-