Remove the pxDictionary class since it is no longer needed.

This was only used by the game database, which has now been changed to an unordered_map
This commit is contained in:
Ryan Houdek 2014-07-15 20:58:25 -05:00
parent 2c6188b73f
commit 79dd0958d0
1 changed files with 0 additions and 12 deletions

View File

@ -682,15 +682,3 @@ public:
};
}
template< class T, class HashFunctor=HashTools::CommonHashClass >
class pxDictionary : public HashTools::HashMap<wxString, T, HashFunctor>
{
public:
virtual ~pxDictionary() {}
pxDictionary( int initialCapacity=33, const wxString& emptyKey = L"@@-EMPTY-@@", const wxString& deletedKey = L"@@-DELETED-@@" )
: HashTools::HashMap<wxString, T, HashFunctor>( emptyKey, deletedKey, initialCapacity)
{
}
};