From dc1b7076e61e85d8cb9e1ec5dd92a4fe5ac6ed9b Mon Sep 17 00:00:00 2001 From: fred Date: Thu, 5 Sep 1996 23:28:40 +0000 Subject: [PATCH] lilypond-0.0.1 --- table.cc | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 table.cc diff --git a/table.cc b/table.cc new file mode 100644 index 0000000000..45e6f4a0e4 --- /dev/null +++ b/table.cc @@ -0,0 +1,27 @@ +#include "glob.hh" +#include "string.hh" +#include "keyword.hh" +#include "parser.hh" + +static Keyword_ent the_key_tab[]={ + "voice", VOICE, + "rhythmstaff", RHYTHMSTAFF, + "score", SCORE, + "bar", BAR, + 0,0 +} ; + + +int +lookup_keyword(String s) +{ + static Keyword_table table(the_key_tab); + return table.lookup(s); +} + +Identifier* +lookup_identifier(String s) +{ + assert(false); + return 0; +} -- 2.39.5