Remove unused prototype in score.hh.
[lilypond/mpolesky.git] / lily / include / score.hh
blob50ad5fe0aacde18677648705bfe8e95fec99a36a
1 /*
2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1997--2010 Han-Wen Nienhuys <hanwen@xs4all.nl>
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.
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.
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/>.
20 #ifndef SCORE_HH
21 #define SCORE_HH
23 #include "lily-proto.hh"
25 #include "input.hh"
26 #include "std-vector.hh"
27 #include "smobs.hh"
28 #include "virtual-methods.hh"
30 class Score
32 DECLARE_SMOBS (Score);
34 SCM music_;
35 SCM input_location_;
36 SCM header_;
37 public:
38 Input *origin () const;
40 vector<Output_def *> defs_;
41 bool error_found_;
43 Score ();
44 Score (Score const &);
46 VIRTUAL_COPY_CONSTRUCTOR (Score, Score);
48 SCM get_music () const;
49 void add_output_def (Output_def *def);
50 void set_music (SCM music);
51 SCM book_rendering (Output_def *, Output_def *);
52 SCM get_header () const;
53 void set_header (SCM module);
56 DECLARE_UNSMOB (Score, score);
58 SCM ly_run_translator (SCM, SCM);
60 #endif /* SCORE_HH */