#include "string.hh"
#include "identifier.hh"
#include "keyword.hh"
+#include "associter.hh"
#include "parser.hh"
static Keyword_ent the_key_tab[]={
"skip", SKIP,
"commands", COMMANDS,
"staff", STAFF,
+ "geometric", GEOMETRIC,
0,0
} ;
{
the_id_tab[i->name] = i;
}
+
+void
+delete_identifiers()
+{
+
+ for (Assoc_iter<String,Identifier*> ai(the_id_tab); ai.ok(); ai++) {
+ mtor << "deleting: " << ai.key()<<'\n';
+ delete ai.val();
+ }
+}