]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/global-context.hh
* lily/ various: Introduce stream events of types Prepare,
[lilypond.git] / lily / include / global-context.hh
index 515c7c3266070a28ea7e9a34af8f36982448d468..0ff225c50d38ec96e5385de723a09d6e9e0d5091 100644 (file)
@@ -21,7 +21,7 @@ class Global_context : public virtual Context
 
   friend class Output_def;
 public:
-  Global_context (Output_def *, Moment final, Object_key *key);
+  Global_context (Output_def *, Object_key *key);
   int get_moments_left () const;
   Moment sneaky_insert_extra_moment (Moment);
   void add_moment_to_process (Moment);
@@ -31,17 +31,16 @@ public:
   void apply_finalizations ();
   void add_finalization (SCM);
 
-  virtual SCM get_output ();
-  virtual void prepare (Moment);
+  DECLARE_LISTENER (prepare);
   virtual void one_time_step ();
   virtual void finish ();
+  virtual SCM get_output ();
   virtual Output_def *get_output_def () const;
   virtual Moment now_mom () const;
   virtual Context *get_default_interpreter ();
 
   Moment previous_moment () const;
 protected:
-  Moment final_mom_;
   Moment prev_mom_;
   Moment now_mom_;
 };