16 lines
292 B
C
16 lines
292 B
C
|
/*
|
||
|
* 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 {
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif //BLT_TESTS_MAP_H
|