Changeset 73978 in vbox for trunk/include/iprt/cpp
- Timestamp:
- Aug 30, 2018 1:19:36 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 124714
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/restbase.h
r73977 r73978 303 303 kCollectionFormat_tsv, /**< Tab-separated list. */ 304 304 kCollectionFormat_pipes, /**< Pipe-separated list. */ 305 kCollectionFormat_multi, /**< Special collection type that must be handled by caller of toString. */ 305 306 kCollectionFormat_Mask = 7, /**< Collection type mask. */ 306 307 … … 1370 1371 1371 1372 /** 1373 * Do path parameters. 1372 1374 * 1373 1375 * @returns IPRT status code … … 1380 1382 int doPathParameters(RTCString *a_pStrPath, const char *a_pszPathTemplate, size_t a_cchPathTemplate, 1381 1383 PATHREPLACEENTRY *a_paPathParams, size_t a_cPathParams) const; 1384 1385 /** Query parameter descriptor. */ 1386 typedef struct 1387 { 1388 const char *pszName; /**< The parameter name. */ 1389 uint32_t fFlags; /**< The toString flags. */ 1390 bool fRequired; /**< Required or not. */ 1391 } QUERYPARAMDESC; 1392 1393 /** 1394 * Do query parameters. 1395 * 1396 * @returns IPRT status code 1397 * @param a_pStrQuery The destination string. 1398 * @param a_paQueryParams The query parameter descriptors. 1399 * @param a_papQueryParamObjs The query parameter objects, parallel to @a a_paQueryParams. 1400 * @param a_cQueryParams Number of query parameters. 1401 */ 1402 int doQueryParameters(RTCString *a_pStrQuery, QUERYPARAMDESC const *a_paQueryParams, 1403 RTCRestObjectBase const **a_papQueryParamObjs, size_t a_cQueryParams) const; 1382 1404 }; 1383 1405
Note:
See TracChangeset
for help on using the changeset viewer.