#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, class alloc_type = compare_allocator > struct nhashmap : public shashmap { inline obj_type get_elem(key_type_ t_key); }; #include "nhashmap.tmpl" #endif