ObjFW  Check-in [3e3b00eb93]

Overview
Comment:OFIRI: Improve documentation
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 3e3b00eb93e652a521cb2435d65583b554eab9da533c39d6638f6fdb0f5929c8
User & Date: js on 2022-11-26 01:29:17
Other Links: manifest | tags
Context
2022-11-26
23:05
OFIRI: Minor documentation improvement check-in: 8c62d4520a user: js tags: trunk
01:29
OFIRI: Improve documentation check-in: 3e3b00eb93 user: js tags: trunk
2022-11-25
23:43
Convert IRIs to URIs where necessary check-in: 1baa99771d user: js tags: trunk
Changes

Modified src/OFIRI.h from [00fdae8a0e] to [dbc29e6a1a].

24
25
26
27
28
29
30

31
32
33
34
35
36
37
38
@class OFNumber;
@class OFPair OF_GENERIC(FirstType, SecondType);
@class OFString;

/**
 * @class OFIRI OFIRI.h ObjFW/OFIRI.h
 *

 * @brief A class for parsing IRIs as per RFC 3987 and accessing parts of it.
 */
@interface OFIRI: OFObject <OFCopying, OFMutableCopying, OFSerialization>
{
	OFString *_scheme;
	OFString *_Nullable _percentEncodedHost;
	OFNumber *_Nullable _port;
	OFString *_Nullable _percentEncodedUser;







>
|







24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@class OFNumber;
@class OFPair OF_GENERIC(FirstType, SecondType);
@class OFString;

/**
 * @class OFIRI OFIRI.h ObjFW/OFIRI.h
 *
 * @brief A class for parsing Internationalized Resource Identifiers as per
 *	  RFC 3987 and accessing parts of it.
 */
@interface OFIRI: OFObject <OFCopying, OFMutableCopying, OFSerialization>
{
	OFString *_scheme;
	OFString *_Nullable _percentEncodedHost;
	OFNumber *_Nullable _port;
	OFString *_Nullable _percentEncodedUser;

Modified src/OFMutableIRI.h from [c2423fcac4] to [e6469ca335].

16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#import "OFIRI.h"

OF_ASSUME_NONNULL_BEGIN

/**
 * @class OFMutableIRI OFMutableIRI.h ObjFW/OFMutableIRI.h
 *
 * @brief A class for parsing IRIs as per RFC 3987 and accessing and modifying
 *	  parts of it.
 */
@interface OFMutableIRI: OFIRI
{
	OF_RESERVE_IVARS(OFMutableIRI, 4)
}

/**







|
|







16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#import "OFIRI.h"

OF_ASSUME_NONNULL_BEGIN

/**
 * @class OFMutableIRI OFMutableIRI.h ObjFW/OFMutableIRI.h
 *
 * @brief A class for parsing Internationalized Resource Identifiers as per
 *	  RFC 3987 and accessing and modifying parts of it.
 */
@interface OFMutableIRI: OFIRI
{
	OF_RESERVE_IVARS(OFMutableIRI, 4)
}

/**