]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/score.hh
(output_def): push scope of parent_ Output_def
[lilypond.git] / lily / include / score.hh
1 /*
2   score.hh -- declare Score
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #ifndef SCORE_HH
10 #define SCORE_HH
11
12 #include "lily-proto.hh"
13
14 #include "input.hh"
15 #include "parray.hh"
16 #include "smobs.hh"
17 #include "virtual-methods.hh"
18
19 class Score : public Input
20 {
21   DECLARE_SMOBS (Score, foo);
22
23 public:
24   Link_array<Output_def> defs_;
25   SCM music_;
26   SCM header_;
27     
28   Score ();
29   Score (Score const&);
30   SCM book_rendering (String, Output_def*, Output_def*);
31 };
32
33 DECLARE_UNSMOB (Score, score);
34
35 SCM ly_run_translator (SCM, SCM);
36 SCM ly_render_output (SCM, SCM);
37 void default_rendering (SCM, SCM, SCM, SCM, SCM);
38
39 #endif /* SCORE_HH */