2023-01-16 14:08:28 -05:00
|
|
|
/*
|
|
|
|
* Created by Brett on 13/01/23.
|
|
|
|
* Licensed under GNU General Public License V3.0
|
|
|
|
* See LICENSE file for license detail
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BLT_TESTS_MAP_H
|
|
|
|
#define BLT_TESTS_MAP_H
|
|
|
|
|
|
|
|
template<typename K, typename V, typename HASH = std::hash<K>>
|
|
|
|
class hashmap {
|
2023-01-22 17:54:24 -05:00
|
|
|
|
2023-01-16 14:08:28 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //BLT_TESTS_MAP_H
|