ObjFW  Check-in [d2796e2a91]

Overview
Comment:Minor documentation fixes.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: d2796e2a91c3613302dee302ffcd0f4ace1cf3466a9ed474a8d0dde8d4a4df00
User & Date: js on 2010-04-07 21:14:49
Other Links: manifest | tags
Context
2010-04-07
23:24
Add OF_APPLICATION_DELEGATE macro. check-in: 8e594ea87a user: js tags: trunk
21:14
Minor documentation fixes. check-in: d2796e2a91 user: js tags: trunk
21:10
Make glibc happy. check-in: f93fd1838d user: js tags: trunk
Changes

Modified src/OFApplication.h from [7806bade69] to [b34d8ea808].

11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

#import "OFObject.h"

@class OFArray;
@class OFMutableArray;

/**
 * \brief A protocol for delegates of OFApplication,
 */
@protocol OFApplicationDelegate
/**
 * This method is called when the application was initialized and is running
 * now.
 */
- (void)applicationDidFinishLaunching;

/**
 * This method is called when the application is going to get terminated.
 */
- (void)applicationWillTerminate;
@end

/**
 * \brief Represents the application as an object.
 */







|









|







11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

#import "OFObject.h"

@class OFArray;
@class OFMutableArray;

/**
 * \brief A protocol for delegates of OFApplication.
 */
@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

/**
 * \brief Represents the application as an object.
 */