Changeset 73915 in vbox
- Timestamp:
- Aug 27, 2018 12:55:15 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/restbase.h
r73902 r73915 291 291 enum 292 292 { 293 kCollectionFormat_cvs = 0, /**< Comma-separated list. */ 294 kCollectionFormat_ssv, /**< Space-separated list. */ 295 kCollectionFormat_tsv, /**< Tab-separated list. */ 296 kCollectionFormat_pipes /**< Pipe-separated list. */ 293 kCollectionFormat_Unspecified = 0, /**< Not specified. */ 294 kCollectionFormat_csv, /**< Comma-separated list. */ 295 kCollectionFormat_ssv, /**< Space-separated list. */ 296 kCollectionFormat_tsv, /**< Tab-separated list. */ 297 kCollectionFormat_pipes /**< Pipe-separated list. */ 297 298 }; 298 299 … … 306 307 * @param a_fFlags kCollectionFormat_xxx. 307 308 */ 308 virtual int toString(RTCString *a_pDst, uint32_t a_fFlags = kCollectionFormat_ cvs) const;309 virtual int toString(RTCString *a_pDst, uint32_t a_fFlags = kCollectionFormat_Unspecified) const; 309 310 310 311 /**
Note:
See TracChangeset
for help on using the changeset viewer.