]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/keyword.hh
Run grand-replace (issue 3765)
[lilypond.git] / lily / include / keyword.hh
index 88ab9ffbe0de7ef61c3096286668ce8a6d1c501c..c139b8a7bb2c4a27449b13b4dab3ba11e2e68023 100644 (file)
@@ -1,27 +1,44 @@
 /*
-  keyword.hh -- part of LilyPond
+  This file is part of LilyPond, the GNU music typesetter.
 
-  (c) 1996,97 Han-Wen Nienhuys
+  Copyright (C) 1996--2014 Han-Wen Nienhuys
+
+  LilyPond is free software: you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  LilyPond is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef KEYWORD_HH
 #define KEYWORD_HH
 
+#include "std-vector.hh"
+
 /* for the keyword table */
 struct Keyword_ent
 {
-    char const *name;
-    int     tokcode;
+  char const *name_;
+  int tokcode_;
 };
 
+/*
+  junkme, use  hash table.
+*/
 struct Keyword_table
 {
-    Keyword_ent *table;
-    int     maxkey;
-    Keyword_table(Keyword_ent *);
-    int     lookup(char const *s) const;
-};
+  vector<Keyword_ent> table_;
 
+  Keyword_table (Keyword_ent *);
+  vsize lookup (char const *s) const;
+};
 
 #endif // KEYWORD_HH