]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/score.hh
e282a5e81be311a8b0edf0409ba943c1fdb0ff1f
[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 : public Smob<Score>
31 {
32 public:
33   SCM mark_smob ();
34   static const char type_p_name_[];
35   virtual ~Score ();
36 private:
37   SCM music_;
38   SCM input_location_;
39   SCM header_;
40 public:
41   Input *origin () const;
42
43   vector<Output_def *> defs_;
44   bool error_found_;
45
46   Score ();
47   Score (Score const &);
48
49   VIRTUAL_COPY_CONSTRUCTOR (Score, Score);
50
51   SCM get_music () const;
52   void add_output_def (Output_def *def);
53   void set_music (SCM music);
54   SCM book_rendering (Output_def *, Output_def *);
55   SCM get_header () const;
56   void set_header (SCM module);
57 };
58
59
60 SCM ly_run_translator (SCM, SCM);
61
62 #endif /* SCORE_HH */