blob: 4cfb50e9620adcdf691d2e05a3fbcf7a68230609 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef NHASHMAP_H
#define NHASHMAP_H
#include "shashmap.h"
using namespace std;
template<class obj_type>
struct nhashmap : public shashmap<obj_type>
{
inline obj_type get_elem(string s_key);
};
#include "nhashmap.tmpl"
#endif
|