Changeset 4321 for trunk/psLib/src/collections/psMetadata.h
- Timestamp:
- Jun 20, 2005, 12:42:30 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psMetadata.h (modified) (17 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psMetadata.h
r4243 r4321 11 11 * @author Ross Harman, MHPCC 12 12 * 13 * @version $Revision: 1.4 8$ $Name: not supported by cvs2svn $14 * @date $Date: 2005-06- 14 02:54:06$13 * @version $Revision: 1.49 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2005-06-20 22:42:29 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 214 214 const char* name, ///< Name of metadata item. 215 215 const char* comment, ///< Comment for metadata item. 216 psBool value ///< the value of the metadata item.216 bool value ///< the value of the metadata item. 217 217 ); 218 218 … … 257 257 * @return bool: True for success, false for failure. 258 258 */ 259 psBool psMetadataAddItem(259 bool psMetadataAddItem( 260 260 psMetadata* md, ///< Metadata collection to insert metadat item. 261 261 psMetadataItem* item, ///< Metadata item to be added. … … 270 270 * @return bool: True for success, false for failure. 271 271 */ 272 psBool psMetadataAdd(272 bool psMetadataAdd( 273 273 psMetadata* md, ///< Metadata collection to insert metadata item. 274 psS32 location,///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL274 int location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 275 275 const char *name, ///< Name of metadata item. 276 int type,///< Type of metadata item (psMetadataType) and options (psMetadataFlags)276 int format, ///< Type of metadata item (psMetadataType) and options (psMetadataFlags) 277 277 const char *comment, ///< Comment for metadata item. 278 278 ... ///< Arguments for name formatting and metadata item data. … … 286 286 * @return bool: True for success, false for failure. 287 287 */ 288 psBool psMetadataAddV(288 bool psMetadataAddV( 289 289 psMetadata* md, ///< Metadata collection to insert metadata item. 290 psS32 location,///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL290 int location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 291 291 const char *name, ///< Name of metadata item. 292 int type,///< Type of metadata item (psMetadataType) and options (psMetadataFlags)292 int format, ///< Type of metadata item (psMetadataType) and options (psMetadataFlags) 293 293 const char *comment, ///< Comment for metadata item. 294 294 va_list list ///< Arguments for name formatting and metadata item data. … … 300 300 * @return psBool: True for success, False for failure. 301 301 */ 302 psBool psMetadataAddS32(302 bool psMetadataAddS32( 303 303 psMetadata* md, ///< Metadata collection to insert metadata item 304 304 psS32 location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL … … 312 312 * @return psBool: True for success, False for failure. 313 313 */ 314 psBool psMetadataAddF32(314 bool psMetadataAddF32( 315 315 psMetadata* md, ///< Metadata collection to insert metadata item 316 316 psS32 location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL … … 324 324 * @return psBool: True for success, False for failure. 325 325 */ 326 psBool psMetadataAddF64(326 bool psMetadataAddF64( 327 327 psMetadata* md, ///< Metadata collection to insert metadata item 328 328 psS32 location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL … … 348 348 * @return psBool: True for success, False for failure. 349 349 */ 350 psBool psMetadataAddStr(350 bool psMetadataAddStr( 351 351 psMetadata* md, ///< Metadata collection to insert metadata item 352 352 psS32 location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL … … 438 438 * @return bool: True for success, false for failure. 439 439 */ 440 psBool psMetadataRemove(441 psMetadata* md, ///< Metadata collection to remove metadata item.442 psS32 where,///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL443 const char * key ///< Name of metadata key.440 bool psMetadataRemove( 441 psMetadata* md, ///< Metadata collection to remove metadata item. 442 int location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 443 const char * key ///< Name of metadata key. 444 444 ); 445 445 … … 453 453 */ 454 454 psMetadataItem* psMetadataLookup( 455 psMetadata * md, ///< Metadata collection to lookup metadata item.455 const psMetadata * md, ///< Metadata collection to lookup metadata item. 456 456 const char * key ///< Name of metadata key. 457 457 ); … … 466 466 */ 467 467 psF64 psMetadataLookupF64( 468 psBool *status, ///< Status of lookup.469 psMetadata *md, ///< Metadata collection to lookup metadata item.468 bool *status, ///< Status of lookup. 469 const psMetadata *md, ///< Metadata collection to lookup metadata item. 470 470 const char *key ///< Name of metadata key. 471 471 ); … … 480 480 */ 481 481 psF32 psMetadataLookupF32( 482 psBool *status, ///< Status of lookup.483 psMetadata *md, ///< Metadata collection to lookup metadata item.482 bool *status, ///< Status of lookup. 483 const psMetadata *md, ///< Metadata collection to lookup metadata item. 484 484 const char *key ///< Name of metadata key. 485 485 ); … … 494 494 */ 495 495 psS32 psMetadataLookupS32( 496 psBool *status, ///< Status of lookup.497 psMetadata *md, ///< Metadata collection to lookup metadata item.496 bool *status, ///< Status of lookup. 497 const psMetadata *md, ///< Metadata collection to lookup metadata item. 498 498 const char *key ///< Name of metadata key. 499 499 ); … … 508 508 */ 509 509 psBool psMetadataLookupBool( 510 psBool *status, ///< Status of lookup.511 psMetadata *md, ///< Metadata collection to lookup metadata item.510 bool *status, ///< Status of lookup. 511 const psMetadata *md, ///< Metadata collection to lookup metadata item. 512 512 const char *key ///< Name of metadata key. 513 513 ); … … 522 522 */ 523 523 psPtr psMetadataLookupPtr( 524 psBool *status, ///< Status of lookup.525 psMetadata* md, ///< Metadata collection to lookup metadata item.524 bool *status, ///< Status of lookup. 525 const psMetadata* md, ///< Metadata collection to lookup metadata item. 526 526 const char *key ///< Name of metadata key. 527 527 ); … … 560 560 * @return psBool TRUE if iterator successfully set, otherwise FALSE. 561 561 */ 562 psBool psMetadataIteratorSet(562 bool psMetadataIteratorSet( 563 563 psMetadataIterator* iterator, ///< psMetadata iterator 564 564 int location ///< index number, PS_LIST_HEAD, or PS_LIST_TAIL
Note:
See TracChangeset
for help on using the changeset viewer.
