#pragma once class WstringLookup { private: UINT numIDs; std::unordered_map str2int; std::vector int2str; public: WstringLookup(); std::wstring lookup(UINT id); UINT lookup(std::wstring); VOID getTable(std::wstring **lookup, UINT *len); };