]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/keyword.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / keyword.hh
index 06d86a41429d276984028daccf3188d0d660f4b6..628ac1f59593091fe31183bba4a73cb160155891 100644 (file)
@@ -1,32 +1,31 @@
 /*
   keyword.hh -- part of GNU LilyPond
 
-  (c) 1996--2004 Han-Wen Nienhuys
+  (c) 1996--2008 Han-Wen Nienhuys
 */
 
 #ifndef KEYWORD_HH
 #define KEYWORD_HH
 
-#include "array.hh"
+#include "std-vector.hh"
 
 /* for the keyword table */
 struct Keyword_ent
 {
   char const *name_;
-  int     tokcode_;
+  int tokcode_;
 };
 
 /*
   junkme, use  hash table.
- */
+*/
 struct Keyword_table
 {
-  Array<Keyword_ent> table_;
+  vector<Keyword_ent> table_;
 
   Keyword_table (Keyword_ent *);
-  int     lookup (char const *s) const;
+  vsize lookup (char const *s) const;
 };
 
-
 #endif // KEYWORD_HH