blob: 75984b570711f7ba7f2c1fc27953b9c3d0af3c41 (
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
|