ObjFW  Diff

Differences From Artifact [486674aaa1]:

To Artifact [d7025a03e1]:


20
21
22
23
24
25
26

27
28
29
30
31
32
33
34

35
36
37
}

/**
 * Sets a key to an object. A key can be any object.
 *
 * \param key The key to set
 * \param obj The object to set the key to

 */
- setObject: (OFObject*)obj
     forKey: (OFObject <OFCopying>*)key;

/**
 * Remove the object with the given key from the dictionary.
 *
 * \param key The key whose object should be removed

 */
- removeObjectForKey: (OFObject*)key;
@end







>

|
|





>

|

20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
}

/**
 * Sets a key to an object. A key can be any object.
 *
 * \param key The key to set
 * \param obj The object to set the key to
 * \return The old object, autoreleased
 */
- (id)setObject: (OFObject*)obj
	 forKey: (OFObject <OFCopying>*)key;

/**
 * Remove the object with the given key from the dictionary.
 *
 * \param key The key whose object should be removed
 * \return The object that was stored for the key, autoreleased
 */
- (id)removeObjectForKey: (OFObject*)key;
@end