A very small amount of work on Manager class
This commit is contained in:
18
include/TerribleMap.h
Normal file
18
include/TerribleMap.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user