From: fred Date: Tue, 5 Nov 1996 16:43:30 +0000 (+0000) Subject: lilypond-0.0.8 X-Git-Tag: release/1.5.59~6901 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2e113e80bc4130829d19908004ebfc3332cef565;p=lilypond.git lilypond-0.0.8 --- diff --git a/table.cc b/table.cc index 5352574399..58d1c425e1 100644 --- a/table.cc +++ b/table.cc @@ -3,6 +3,7 @@ #include "string.hh" #include "identifier.hh" #include "keyword.hh" +#include "associter.hh" #include "parser.hh" static Keyword_ent the_key_tab[]={ @@ -23,6 +24,7 @@ static Keyword_ent the_key_tab[]={ "skip", SKIP, "commands", COMMANDS, "staff", STAFF, + "geometric", GEOMETRIC, 0,0 } ; @@ -50,3 +52,13 @@ add_identifier(Identifier*i) { the_id_tab[i->name] = i; } + +void +delete_identifiers() +{ + + for (Assoc_iter ai(the_id_tab); ai.ok(); ai++) { + mtor << "deleting: " << ai.key()<<'\n'; + delete ai.val(); + } +}