// File: HashEntry.cpp // Constructor and gets for class used to demo simple hash table #include "HashEntry.h" HashEntry::HashEntry(int key, int value) { this->key = key; this->value = value; } int HashEntry::getKey() { return key; } int HashEntry::getValue() { return value; }