]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/score.hh
7fe68796ec17c3d57aecc5490ff5cec957ac7477
[lilypond.git] / lily / include / score.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1997--2014 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   bool error_found_;
42
43   Score ();
44   Score (Score const &);
45
46   VIRTUAL_COPY_CONSTRUCTOR (Score, Score);
47
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);
54 };
55
56 DECLARE_UNSMOB (Score, score);
57
58 SCM ly_run_translator (SCM, SCM);
59
60 #endif /* SCORE_HH */