18 lines
264 B
C++
18 lines
264 B
C++
#ifndef TERRIBLEMAP_H
|
|
#define TERRIBLEMAP_H
|
|
|
|
#include <LinkedList.h>
|
|
|
|
template <typename K, typename V>
|
|
struct Entry {
|
|
K key;
|
|
V value;
|
|
};
|
|
|
|
template <typename K, typename V>
|
|
class TerribleMap {
|
|
private:
|
|
LinkedList<Entry<K,V>> mapList;
|
|
};
|
|
|
|
#endif |