ObjFW  Diff

Differences From Artifact [b9cf6cd576]:

To Artifact [dcccbffbc5]:


233
234
235
236
237
238
239











/*!
 * @brief Resets the enumerator, so the next call to nextKey returns the first
 *	  key again.
 */
- (void)reset;
@end

















>
>
>
>
>
>
>
>
>
>
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249

/*!
 * @brief Resets the enumerator, so the next call to nextKey returns the first
 *	  key again.
 */
- (void)reset;
@end

@interface OFMapTableEnumeratorWrapper: OFEnumerator
{
	OFMapTableEnumerator *enumerator;
	id object;
}

- initWithEnumerator: (OFMapTableEnumerator*)enumerator
	      object: (id)object;
@end