ObjFW  Diff

Differences From Artifact [d4653e60d0]:

To Artifact [9729efb348]:


26
27
28
29
30
31
32
33

34
35
36
37
38
39
40
41

42
43
44
45
46
47
26
27
28
29
30
31
32

33
34
35
36

37
38
39

40
41
42
43
44
45
46







-
+



-



-
+







/**
 * Adds an object to the autorelease pool at the top of the thread-specific
 * stack.
 *
 * \param obj The object to add to the autorelease pool
 */
+ (void)addToPool: (OFObject*)obj;
+ (void)addObjectToTopmostPool: (OFObject*)obj;

/**
 * Adds an object to the specific autorelease pool.
 * stack.
 *
 * \param obj The object to add to the autorelease pool
 */
- addToPool: (OFObject*)obj;
- addObject: (OFObject*)obj;

/**
 * Releases all objects in the autorelease pool.
 */
- releaseObjects;
@end