#ifndef TERRIBLEMAP_H #define TERRIBLEMAP_H #include template struct Entry { K key; V value; }; template class TerribleMap { private: LinkedList> mapList; }; #endif