]> git.donarmstrong.com Git - lilypond.git/blob - lily/string-number-engraver.cc
Update source file headers. Fixes using standard GNU package conventions.
[lilypond.git] / lily / string-number-engraver.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2005--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "engraver.hh"
21
22 //  Junk String numbers.
23 class String_number_engraver : public Engraver
24 {
25 public:
26   TRANSLATOR_DECLARATIONS (String_number_engraver);
27 protected:
28   virtual bool try_music (Music *m);
29 };
30
31 bool
32 String_number_engraver::try_music (Music *)
33 {
34   return true;
35 }
36
37 String_number_engraver::String_number_engraver ()
38 {
39 }
40
41 /*
42   TODO: string numbers are printed right of the note circled. This
43   engraver should provide this functionality.
44 */
45
46 #include "translator.icc"
47
48 ADD_TRANSLATOR (String_number_engraver,
49                 /* doc */
50                 "Swallow string number events.  The purpose of this engraver"
51                 " is to process tablatures for normal notation.  To provent"
52                 " warnings for unprocessed string number events to obscure"
53                 " real error messages, this engraver swallows them all.",
54
55                 /* create */
56                 "",
57
58                 /* read */
59                 "",
60
61                 /* write */
62                 ""
63                 );