Changeset 4130
- Timestamp:
- Jun 7, 2005, 9:59:39 AM (21 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 2 edited
-
collections/psMetadata.h (modified) (7 diffs)
-
types/psMetadata.h (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psMetadata.h
r3945 r4130 11 11 * @author Ross Harman, MHPCC 12 12 * 13 * @version $Revision: 1.4 5$ $Name: not supported by cvs2svn $14 * @date $Date: 2005-0 5-16 19:43:53$13 * @version $Revision: 1.46 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2005-06-07 19:59:39 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 260 260 psMetadata* md, ///< Metadata collection to insert metadat item. 261 261 psMetadataItem* item, ///< Metadata item to be added. 262 psS32 location, ///< Location to be added.262 psS32 location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 263 263 psS32 flags ///< Options flag mask, see psMetadataFlags enum 264 264 ); … … 272 272 psBool psMetadataAdd( 273 273 psMetadata* md, ///< Metadata collection to insert metadata item. 274 psS32 location, ///< Location to be added.274 psS32 location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 275 275 const char *name, ///< Name of metadata item. 276 276 int type, ///< Type of metadata item (psMetadataType) and options (psMetadataFlags) … … 288 288 psBool psMetadataAddV( 289 289 psMetadata* md, ///< Metadata collection to insert metadat item. 290 psS32 location, ///< Location to be added.290 psS32 location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 291 291 const char *name, ///< Name of metadata item. 292 292 int type, ///< Type of metadata item (psMetadataType) and options (psMetadataFlags) … … 331 331 psBool psMetadataRemove( 332 332 psMetadata* md, ///< Metadata collection to remove metadata item. 333 psS32 where, ///< Location to be removed.333 psS32 where, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 334 334 const char * key ///< Name of metadata key. 335 335 ); … … 426 426 */ 427 427 psMetadataItem* psMetadataGet( 428 psMetadata* md, ///< Metadata collection to insert metadatitem.429 psS32 location ///< Location to be retrieved.428 psMetadata* md, ///< Metadata collection to retrieve metadata item. 429 psS32 location ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 430 430 ); 431 431 … … 440 440 psMetadataIterator* psMetadataIteratorAlloc( 441 441 psMetadata* md, ///< the psMetadata to iterate with 442 int location, ///< the initial starting point (after subsetting).442 int location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 443 443 const char* regex 444 444 ///< A regular expression for subsetting the psMetadata. If NULL, no -
trunk/psLib/src/types/psMetadata.h
r3945 r4130 11 11 * @author Ross Harman, MHPCC 12 12 * 13 * @version $Revision: 1.4 5$ $Name: not supported by cvs2svn $14 * @date $Date: 2005-0 5-16 19:43:53$13 * @version $Revision: 1.46 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2005-06-07 19:59:39 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 260 260 psMetadata* md, ///< Metadata collection to insert metadat item. 261 261 psMetadataItem* item, ///< Metadata item to be added. 262 psS32 location, ///< Location to be added.262 psS32 location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 263 263 psS32 flags ///< Options flag mask, see psMetadataFlags enum 264 264 ); … … 272 272 psBool psMetadataAdd( 273 273 psMetadata* md, ///< Metadata collection to insert metadata item. 274 psS32 location, ///< Location to be added.274 psS32 location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 275 275 const char *name, ///< Name of metadata item. 276 276 int type, ///< Type of metadata item (psMetadataType) and options (psMetadataFlags) … … 288 288 psBool psMetadataAddV( 289 289 psMetadata* md, ///< Metadata collection to insert metadat item. 290 psS32 location, ///< Location to be added.290 psS32 location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 291 291 const char *name, ///< Name of metadata item. 292 292 int type, ///< Type of metadata item (psMetadataType) and options (psMetadataFlags) … … 331 331 psBool psMetadataRemove( 332 332 psMetadata* md, ///< Metadata collection to remove metadata item. 333 psS32 where, ///< Location to be removed.333 psS32 where, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 334 334 const char * key ///< Name of metadata key. 335 335 ); … … 426 426 */ 427 427 psMetadataItem* psMetadataGet( 428 psMetadata* md, ///< Metadata collection to insert metadatitem.429 psS32 location ///< Location to be retrieved.428 psMetadata* md, ///< Metadata collection to retrieve metadata item. 429 psS32 location ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 430 430 ); 431 431 … … 440 440 psMetadataIterator* psMetadataIteratorAlloc( 441 441 psMetadata* md, ///< the psMetadata to iterate with 442 int location, ///< the initial starting point (after subsetting).442 int location, ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL 443 443 const char* regex 444 444 ///< A regular expression for subsetting the psMetadata. If NULL, no
Note:
See TracChangeset
for help on using the changeset viewer.
