From 9cd3ccffd5372dfde3af478e3f832f18db4be3f1 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 6 Apr 2013 13:14:41 +0200 Subject: tagging tags --- yhttpd-0.7.2/src/maps/nhashmap.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 yhttpd-0.7.2/src/maps/nhashmap.h (limited to 'yhttpd-0.7.2/src/maps/nhashmap.h') diff --git a/yhttpd-0.7.2/src/maps/nhashmap.h b/yhttpd-0.7.2/src/maps/nhashmap.h new file mode 100644 index 0000000..7f17a55 --- /dev/null +++ b/yhttpd-0.7.2/src/maps/nhashmap.h @@ -0,0 +1,21 @@ +#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 -- cgit v1.2.3