// File: HashEntry.h // Simple object for hash table demo // Key and value are both int class HashEntry { private: int key; int value; public: HashEntry(int key, int value); // Immutable: gets only int getKey(); int getValue() ; };