PtrListDictionary: New form of Dictionary in which the list type is PtrList rather than a linked-list

This commit is contained in:
Henry Weller
2015-09-16 21:26:26 +01:00
parent 57e98f135e
commit 711452d46c
7 changed files with 381 additions and 6 deletions

View File

@ -74,13 +74,15 @@ class DictionaryBase
:
public IDLListType
{
// Private data
protected:
// Protected data
//- HashTable of the entries held on the IDLListType for quick lookup
HashTable<T*> hashedTs_;
// Private Member functions
// Protected Member functions
// Add the IDLListType entries into the HashTable
void addEntries();