]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/score-context.hh
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / include / score-context.hh
1 /*
2   score-context.hh -- declare Score_context
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2004--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8 #ifndef SCORE_CONTEXT_HH
9 #define SCORE_CONTEXT_HH
10
11 #include "global-context.hh"
12
13 class Score_context : public Context
14 {
15 public:
16   Score_context (Object_key const *);
17
18   virtual SCM get_output ();
19   virtual void prepare (Moment);
20   virtual void finish ();
21   virtual void one_time_step ();
22 };
23
24 #endif /* SCORE_CONTEXT_HH */