LookupTable.h
Go to the documentation of this file.
50template<typename EnumType, typename RecordType = LookupTableRecord<EnumType>, typename Hasher = CaseInsensitiveSBufHash >
73 using lookupTable_t = std::unordered_map<const SBuf, EnumType, Hasher, CaseInsensitiveSBufEqual>;
Definition: LookupTable.h:52
std::unordered_map< const SBuf, EnumType, Hasher, CaseInsensitiveSBufEqual > lookupTable_t
Definition: LookupTable.h:73
LookupTable(const EnumType theInvalid, const Record data[])
Definition: LookupTable.h:57
Definition: LookupTable.h:28