2 score.hh -- declare Score
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
12 #include "lily-proto.hh"
15 #include "std-vector.hh"
17 #include "virtual-methods.hh"
21 DECLARE_SMOBS (Score);
27 Input *origin() const;
29 vector<Output_def*> defs_;
34 Score (Score const &);
36 VIRTUAL_COPY_CONSTRUCTOR (Score, Score);
38 SCM get_music () const;
39 void add_output_def (Output_def *def);
40 void set_music (SCM music);
41 SCM book_rendering (Output_def *, Output_def *);
42 SCM get_header () const;
43 void set_header (SCM module);
46 DECLARE_UNSMOB (Score, score);
48 SCM ly_render_output (SCM, SCM);
49 SCM ly_run_translator (SCM, SCM);