]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/engraver-group.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / engraver-group.hh
index 3e61dad3cd2dc170203ac1506eb488a96b7149bc..2a75741f765faf2582d6d9ebf5789d147415e4b9 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #ifndef ENGRAVER_GROUP_HH
 class Engraver_group : public virtual Translator_group
 {
 protected:
-  Array<Grob_info> announce_infos_;
-  SCM acknowledge_hash_table_;
+  vector<Grob_info> announce_infos_;
+  Drul_array<SCM> acknowledge_hash_table_drul_;
+  DECLARE_LISTENER (override);
+  DECLARE_LISTENER (revert);
 public:
   VIRTUAL_COPY_CONSTRUCTOR (Translator_group, Engraver_group);
+
   Engraver_group ();
   virtual void derived_mark () const;
   void do_announces ();
+  virtual void connect_to_context (Context *c);
+  virtual void disconnect_from_context ();
   virtual void announce_grob (Grob_info);
   int pending_grob_count () const;
 private:
@@ -32,6 +37,6 @@ typedef void (Engraver:: *Engraver_method) (void);
 
 void engraver_each (SCM list, Engraver_method method);
 
-#endif // ENGRAVERGROUP_HH
+#endif /* ENGRAVERGROUP_HH */