ObjFW  Check-in [2a6c3df320]

Overview
Comment:OFURL.h: Add missing @brief to documentation
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 2a6c3df320acbdd7f75672e89108a55a5cbabdd6b6087f0b60c69bb7217e29ef
User & Date: js on 2016-02-21 10:52:03
Other Links: manifest | tags
Context
2016-02-21
11:59
OFArray: Fix bug introduced by refactorization check-in: 8a14ad35aa user: js tags: trunk
10:52
OFURL.h: Add missing @brief to documentation check-in: 2a6c3df320 user: js tags: trunk
10:36
OFRunLoop: Fix a missing deadline != nil check check-in: bb8753c099 user: js tags: trunk
Changes

Modified src/OFURL.h from [1ffe3a44f6] to [1f6d5f7a9d].

75
76
77
78
79
80
81
82

83
84
85
86
87
88
89

90
91
92
93
94
95
96
97


98
99
100
101
102
103
104
75
76
77
78
79
80
81

82
83
84
85
86
87
88

89
90
91
92
93
94
95
96

97
98
99
100
101
102
103
104
105







-
+






-
+







-
+
+








/*!
 * The fragment part of the URL.
 */
@property OF_NULLABLE_PROPERTY (copy) OFString *fragment;

/*!
 * Creates a new URL.
 * @brief Creates a new URL.
 *
 * @return A new, autoreleased OFURL
 */
+ (instancetype)URL;

/*!
 * Creates a new URL with the specified string.
 * @brief Creates a new URL with the specified string.
 *
 * @param string A string describing a URL
 * @return A new, autoreleased OFURL
 */
+ (instancetype)URLWithString: (OFString*)string;

/*!
 * Creates a new URL with the specified string relative to the specified URL.
 * @brief Creates a new URL with the specified string relative to the
 *	  specified URL.
 *
 * @param string A string describing a URL
 * @param URL An URL to which the string is relative
 * @return A new, autoreleased OFURL
 */
+ (instancetype)URLWithString: (OFString*)string
		relativeToURL: (OFURL*)URL;