blob: 7f17a5554ea995c9ad4d8048897730a8305c77ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef NHASHMAP_H
#define NHASHMAP_H
#include "shashmap.h"
using namespace std;
template
<
class obj_type,
class key_type_ = string,
class hash_type = size_hash<string>,
class alloc_type = compare_allocator<string>
>
struct nhashmap : public shashmap<obj_type, key_type_, hash_type, alloc_type>
{
inline obj_type get_elem(key_type_ t_key);
};
#include "nhashmap.tmpl"
#endif
|