@@ -13,21 +13,13 @@ * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #import "OFDictionary.h" + +@class OFMapTable; @interface OFMutableDictionary_hashtable: OFMutableDictionary { - struct of_dictionary_hashtable_bucket **data; - uint32_t size; - size_t count; - unsigned long mutations; -} - -#if defined(OF_SET_HASHTABLE_M) || defined(OF_MUTABLE_SET_HASHTABLE_M) || \ - defined(OF_COUNTED_SET_HASHTABLE_M) -- (void)OF_setObject: (id)object - forKey: (id)key - copyKey: (BOOL)copyKey; -#endif + OFMapTable *mapTable; +} @end