#ifndef __HASHTABLE #define __HASHTABLE #include /* THIS IS NOT A REAL HASH TABLE IT IS JUST A CHEAP STAND-IN */ struct Link; class hashtable { protected: Link * first; public: hashtable(); int * find(string s); void set(string s, int v); }; #endif