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