diff options
Diffstat (limited to 'symtable.hh')
-rw-r--r-- | symtable.hh | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/symtable.hh b/symtable.hh index f390e285e0..73c4079e70 100644 --- a/symtable.hh +++ b/symtable.hh @@ -1,5 +1,14 @@ +/* + 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<String, Symbol> { - const Symbol * lookup(String)const; + Symbol lookup(String)const; }; @@ -14,3 +23,6 @@ struct Symtables : private Assoc<String, Symtable*> { }; + +#endif + |