]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/score-context.hh
6fc57aa690051f79e68f64858d63e4ad3d88b018
[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--2005 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 Music_output *get_output ();     
19   virtual void prepare (Moment);
20   virtual void finish ();
21   virtual void one_time_step ();
22 };
23
24 #endif /* SCORE_CONTEXT_HH */