]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/translator-dispatch-list.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / translator-dispatch-list.hh
index 914df8c167e13818057a56ba19a4dceeed8a4605..43d5d133471db25aa7a17f7429d5a2f17b25c50c 100644 (file)
@@ -3,15 +3,14 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 2005--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #ifndef TRANSLATOR_DISPATCH_LIST_HH
 #define TRANSLATOR_DISPATCH_LIST_HH
 
 #include "lily-proto.hh"
-#include "lily-guile.hh"
-#include "array.hh"
+#include "std-vector.hh"
 #include "smobs.hh"
 
 struct Engraver_dispatch_entry
@@ -22,13 +21,13 @@ struct Engraver_dispatch_entry
 
 class Engraver_dispatch_list
 {
-  Array<Engraver_dispatch_entry> dispatch_entries_;
+  vector<Engraver_dispatch_entry> dispatch_entries_;
 public:
   void apply (Grob_info);
   SCM static create (SCM trans_list,
-                    SCM iface_list);
+                    SCM iface_list, Direction);
 
-  DECLARE_SIMPLE_SMOBS (Engraver_dispatch_list,);
+  DECLARE_SIMPLE_SMOBS (Engraver_dispatch_list);
 };
 
 #endif /* TRANSLATOR_DISPATCH_LIST_HH */