]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/score.hh
Update source file headers. Fixes using standard GNU package conventions.
[lilypond.git] / lily / include / score.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1997--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 #ifndef SCORE_HH
21 #define SCORE_HH
22
23 #include "lily-proto.hh"
24
25 #include "input.hh"
26 #include "std-vector.hh"
27 #include "smobs.hh"
28 #include "virtual-methods.hh"
29
30 class Score
31 {
32   DECLARE_SMOBS (Score);
33
34   SCM music_;
35   SCM input_location_;
36   SCM header_;
37 public:
38   Input *origin() const;
39  
40   vector<Output_def*> defs_;
41   string user_key_;
42   bool error_found_;
43
44   Score ();
45   Score (Score const &);
46
47   VIRTUAL_COPY_CONSTRUCTOR (Score, Score);
48   
49   SCM get_music () const;
50   void add_output_def (Output_def *def);
51   void set_music (SCM music);
52   SCM book_rendering (Output_def *, Output_def *);
53   SCM get_header () const;
54   void set_header (SCM module);
55 };
56
57 DECLARE_UNSMOB (Score, score);
58
59 SCM ly_render_output (SCM, SCM);
60 SCM ly_run_translator (SCM, SCM);
61
62 #endif /* SCORE_HH */