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