ObjFW  Diff

Differences From Artifact [b0da128322]:

To Artifact [2c20aa4c5b]:


35
36
37
38
39
40
41



42
43
44
45
46
47
48
@protocol OFApplicationDelegate
/**
 * This method is called when the application was initialized and is running
 * now.
 */
- (void)applicationDidFinishLaunching;




/**
 * This method is called when the application will terminate.
 */
- (void)applicationWillTerminate;
@end

/**







>
>
>







35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
@protocol OFApplicationDelegate
/**
 * This method is called when the application was initialized and is running
 * now.
 */
- (void)applicationDidFinishLaunching;

#ifdef OF_HAVE_OPTIONAL_PROTOCOLS
@optional
#endif
/**
 * This method is called when the application will terminate.
 */
- (void)applicationWillTerminate;
@end

/**