Changeset 4330 for trunk/psLib/src/types
- Timestamp:
- Jun 20, 2005, 5:01:37 PM (21 years ago)
- Location:
- trunk/psLib/src/types
- Files:
-
- 2 edited
-
psList.h (modified) (7 diffs)
-
psMetadata.h (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/types/psList.h
r4316 r4330 7 7 * @ingroup LinkedList 8 8 * 9 * @version $Revision: 1.2 6$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-06- 18 03:13:02$9 * @version $Revision: 1.27 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-06-21 03:01:37 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 107 107 * iterator position is not changed. 108 108 * 109 * @return psBool TRUE if iterator successfully set, otherwise FALSE.109 * @return bool TRUE if iterator successfully set, otherwise FALSE. 110 110 */ 111 111 bool psListIteratorSet( … … 116 116 /** Adds an element to a psList at position given. 117 117 * 118 * @return psBool TRUE if item was successfully added, otherwise FALSE.118 * @return bool TRUE if item was successfully added, otherwise FALSE. 119 119 */ 120 120 bool psListAdd( … … 126 126 /** Adds an data item to a psList at position just after the list position given 127 127 * 128 * @return psBool TRUE if item was successfully added, otherwise FALSE.128 * @return bool TRUE if item was successfully added, otherwise FALSE. 129 129 */ 130 130 bool psListAddAfter( … … 135 135 /** Adds an data item to a psList at position just before the list position given 136 136 * 137 * @return psBool TRUE if item was successfully added, otherwise FALSE.137 * @return bool TRUE if item was successfully added, otherwise FALSE. 138 138 */ 139 139 bool psListAddBefore( … … 144 144 /** Remove an item at the specified location from a list. 145 145 * 146 * @return psBool TRUE if element is successfully removed, otherwise FALSE.146 * @return bool TRUE if element is successfully removed, otherwise FALSE. 147 147 */ 148 148 bool psListRemove( … … 153 153 /** Remove an item from a list. 154 154 * 155 * @return psBool TRUE if element is successfully removed, otherwise FALSE.155 * @return bool TRUE if element is successfully removed, otherwise FALSE. 156 156 */ 157 157 bool psListRemoveData( -
trunk/psLib/src/types/psMetadata.h
r4321 r4330 11 11 * @author Ross Harman, MHPCC 12 12 * 13 * @version $Revision: 1. 49$ $Name: not supported by cvs2svn $14 * @date $Date: 2005-06-2 0 22:42:29$13 * @version $Revision: 1.50 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2005-06-21 03:01:37 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 274 274 int location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 275 275 const char *name, ///< Name of metadata item. 276 int format, ///< 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. … … 298 298 /** Add a psS32 value to metadata collection. 299 299 * 300 * @return psBool: True for success, False for failure.300 * @return bool: True for success, False for failure. 301 301 */ 302 302 bool psMetadataAddS32( … … 310 310 /** Add a psF32 value to metadata collection. 311 311 * 312 * @return psBool: True for success, False for failure.312 * @return bool: True for success, False for failure. 313 313 */ 314 314 bool psMetadataAddF32( … … 322 322 /** Add a psF64 value to metadata collection. 323 323 * 324 * @return psBool: True for success, False for failure.324 * @return bool: True for success, False for failure. 325 325 */ 326 326 bool psMetadataAddF64( … … 346 346 /** Add a string to metadata collection. 347 347 * 348 * @return psBool: True for success, False for failure.348 * @return bool: True for success, False for failure. 349 349 */ 350 350 bool psMetadataAddStr( … … 505 505 * returned. 506 506 * 507 * @return psBool : Value of metadata item.508 */ 509 psBool psMetadataLookupBool(507 * @return bool : Value of metadata item. 508 */ 509 bool psMetadataLookupBool( 510 510 bool *status, ///< Status of lookup. 511 511 const psMetadata *md, ///< Metadata collection to lookup metadata item. … … 558 558 * invalid the iterator position is not changed. 559 559 * 560 * @return psBool TRUE if iterator successfully set, otherwise FALSE.560 * @return bool TRUE if iterator successfully set, otherwise FALSE. 561 561 */ 562 562 bool psMetadataIteratorSet(
Note:
See TracChangeset
for help on using the changeset viewer.
