]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/score.hh
* lily/include/music-output.hh (process): Change signature to
[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 "input.hh"
13 #include "lily-proto.hh"
14
15 #include "parray.hh"
16 #include "smobs.hh"
17
18 class Score : public Input
19 {
20 public:
21   Link_array<Music_output_def> defs_;
22   SCM music_;
23   SCM header_;
24     
25   Score ();
26   Score (Score const&);
27   DECLARE_SMOBS (Score,foo);
28 };
29 DECLARE_UNSMOB (Score,score); 
30
31
32 SCM ly_run_translator (SCM, SCM);
33 SCM ly_render_output (SCM, SCM);
34 void default_rendering (SCM,SCM,SCM,SCM);
35
36 #endif /* SCORE_HH */