ObjFW  Check-in [7cae2b95fb]

Overview
Comment:Documentation improvement.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 7cae2b95fb06aca05fac17f1e058501a87f363df9605da810f3e232d8c4c78da
User & Date: js on 2009-12-21 16:58:42
Other Links: manifest | tags
Context
2009-12-23
22:25
Unicode Table Generator: Store used tables in object. check-in: a4918da65c user: js tags: trunk
2009-12-21
17:02
Create 0.1 branch and remove unfinished XML stuff from it. check-in: b3c14e1dfa user: js tags: 0.1
16:58
Documentation improvement. check-in: 7cae2b95fb user: js tags: trunk
2009-12-20
23:20
Update PLATFORMS. check-in: 092f7652a2 user: js tags: trunk
Changes

Modified src/OFXMLParser.h from [3fccc379ee] to [2d338a54e8].

84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
 * A protocol that needs to be implemented by delegates for 
 * stringByXMLUnescapingWithHandler:.
 */
@protocol OFXMLUnescapingDelegate
/**
 * This callback is called when an unknown entity was found while trying to
 * unescape XML. The callback is supposed to return a substitution for the
 * entity or nil if it is not known to the callback as well, in which case an
 * exception will be risen.
 *
 * \param entity The name of the entity that is unknown
 * \return A substitution for the entity or nil
 */
- (OFString*)foundUnknownEntityNamed: (OFString*)entity;
@end








|
|







84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
 * A protocol that needs to be implemented by delegates for 
 * stringByXMLUnescapingWithHandler:.
 */
@protocol OFXMLUnescapingDelegate
/**
 * This callback is called when an unknown entity was found while trying to
 * unescape XML. The callback is supposed to return a substitution for the
 * entity or nil if it is unknown to the callback as well, in which case an
 * exception will be thrown.
 *
 * \param entity The name of the entity that is unknown
 * \return A substitution for the entity or nil
 */
- (OFString*)foundUnknownEntityNamed: (OFString*)entity;
@end