template obj_type nhashmap::get_elem(string s_key) { typename hashmap::iterator iter = this->find(s_key); if ( iter != this->end() ) return iter->second; return NULL; }