From: fred Date: Thu, 31 Oct 1996 21:36:18 +0000 (+0000) Subject: lilypond-0.0.9 X-Git-Tag: release/1.5.59~6989 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7c12f48d6e11146f5bdb81e24b366a8d037cd787;p=lilypond.git lilypond-0.0.9 --- diff --git a/hdr/symtable.hh b/hdr/symtable.hh new file mode 100644 index 0000000000..a1443a7d3b --- /dev/null +++ b/hdr/symtable.hh @@ -0,0 +1,23 @@ +/* + lilypond, (c) 1996 Han-Wen Nienhuys +*/ +#ifndef SYMTABLE_HH +#define SYMTABLE_HH +#include "assoc.hh" +#include "string.hh" +#include "symbol.hh" + +struct Symtable : public Assoc { + Symbol lookup(String)const; +}; + + +struct Symtables : private Assoc { + void read(Text_db&) ; + Symtable* operator()(String s); + +}; + + +#endif +