ObjFW  Check-in [f62c04e5d8]

Overview
Comment:Minor interface fixes
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: f62c04e5d81419b062860a3efc399824057e24db0a0e47f8e9cca289ab209d97
User & Date: js on 2015-06-14 12:43:01
Other Links: manifest | tags
Context
2015-06-14
12:47
utils/ofhttp: Allow specifying - to -b for stdin check-in: 51cfed24d2 user: js tags: trunk
12:43
Minor interface fixes check-in: f62c04e5d8 user: js tags: trunk
12:37
utils/objfw-config.in: Use -n instead of ! -z check-in: 7bb4a942fb user: js tags: trunk
Changes

Modified src/OFHTTPServer.h from [1d47d66b5b] to [a9420ff4db].

93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
+ (instancetype)server;

/*!
 * @brief Sets the host on which the HTTP server will listen.
 *
 * @param host The host to listen on
 */
- (void)setHost: (nullable OFString*)host;

/*!
 * @brief Returns the host on which the HTTP server will listen.
 *
 * @return The host on which the HTTP server will listen
 */
- (nullable OFString*)host;







|







93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
+ (instancetype)server;

/*!
 * @brief Sets the host on which the HTTP server will listen.
 *
 * @param host The host to listen on
 */
- (void)setHost: (OFString*)host;

/*!
 * @brief Returns the host on which the HTTP server will listen.
 *
 * @return The host on which the HTTP server will listen
 */
- (nullable OFString*)host;

Modified src/OFXMLElement.h from [1cbedf75d5] to [06c926080e].

252
253
254
255
256
257
258









259
260
261
262
263
264
265
 * @brief Sets the default namespace for the element to be used if there is no
 *	  parent.
 *
 * @param defaultNamespace The default namespace for the element
 */
- (void)setDefaultNamespace: (nullable OFString*)defaultNamespace;










/*!
 * @brief Returns an OFArray with the attributes of the element.
 *
 * @return An OFArray with the attributes of the element
 */
- (nullable OFArray OF_GENERIC(OFXMLAttribute*)*)attributes;








>
>
>
>
>
>
>
>
>







252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
 * @brief Sets the default namespace for the element to be used if there is no
 *	  parent.
 *
 * @param defaultNamespace The default namespace for the element
 */
- (void)setDefaultNamespace: (nullable OFString*)defaultNamespace;

/*!
 * @brief Returns the default namespace for the element to be used if there is
 *	  no parent.
 *
 * @return The default namespace for the element to be used if there is no
 *	   parent.
 */
- (nullable OFString*)defaultNamespace;

/*!
 * @brief Returns an OFArray with the attributes of the element.
 *
 * @return An OFArray with the attributes of the element
 */
- (nullable OFArray OF_GENERIC(OFXMLAttribute*)*)attributes;