initial
[prop.git] / app / willard / idset.h
blob210ff5cd97e16bde111412de5157499c16b08c52
1 #ifndef id_set_h
2 #define id_set_h
4 #include "willard-ast.ph"
5 #include <AD/hash/lhash.h>
7 class IdSet : public LHashTable<Id, Id>
8 { typedef LHashTable<Id,Id> Super;
9 public:
10 inline void insert(Id id) { Super::insert(id,id); }
13 #endif