IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 27, 2005, 10:38:12 AM (21 years ago)
Author:
drobbin
Message:

made required changes based on apidelta-report-cycle6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/psMetadata.h

    r4370 r4401  
    1111*  @author Ross Harman, MHPCC
    1212*
    13 *  @version $Revision: 1.51 $ $Name: not supported by cvs2svn $
    14 *  @date $Date: 2005-06-24 01:44:18 $
     13*  @version $Revision: 1.52 $ $Name: not supported by cvs2svn $
     14*  @date $Date: 2005-06-27 20:38:12 $
    1515*
    1616*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    215215    const char* name,                  ///< Name of metadata item.
    216216    const char* comment,               ///< Comment for metadata item.
    217     bool value                       ///< the value of the metadata item.
     217    bool value                         ///< the value of the metadata item.
    218218);
    219219
     
    260260bool psMetadataAddItem(
    261261    psMetadata*  md,                   ///< Metadata collection to insert metadat item.
    262     psMetadataItem*  item,             ///< Metadata item to be added.
     262    const psMetadataItem* item,        ///< Metadata item to be added.
    263263    psS32 location,                    ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
    264264    psS32 flags                        ///< Options flag mask, see psMetadataFlags enum
     
    334334
    335335/** Add a psList to metadata collection.
    336  * 
     336 *       
    337337 *  @return psBool:  True for success, False for failure.
    338338 */
     
    466466 */
    467467psMetadataItem* psMetadataLookup(
    468     const psMetadata * md,                   ///< Metadata collection to lookup metadata item.
     468    const psMetadata * md,             ///< Metadata collection to lookup metadata item.
    469469    const char * key                   ///< Name of metadata key.
    470470);
     
    479479 */
    480480psF64 psMetadataLookupF64(
    481     bool *status,                    ///< Status of lookup.
    482     const psMetadata *md,                    ///< Metadata collection to lookup metadata item.
     481    bool *status,                      ///< Status of lookup.
     482    const psMetadata *md,              ///< Metadata collection to lookup metadata item.
    483483    const char *key                    ///< Name of metadata key.
    484484);
     
    493493 */
    494494psF32 psMetadataLookupF32(
    495     bool *status,                    ///< Status of lookup.
    496     const psMetadata *md,                    ///< Metadata collection to lookup metadata item.
     495    bool *status,                      ///< Status of lookup.
     496    const psMetadata *md,              ///< Metadata collection to lookup metadata item.
    497497    const char *key                    ///< Name of metadata key.
    498498);
     
    507507 */
    508508psS32 psMetadataLookupS32(
    509     bool *status,                    ///< Status of lookup.
    510     const psMetadata *md,                    ///< Metadata collection to lookup metadata item.
     509    bool *status,                      ///< Status of lookup.
     510    const psMetadata *md,              ///< Metadata collection to lookup metadata item.
    511511    const char *key                    ///< Name of metadata key.
    512512);
     
    521521 */
    522522bool psMetadataLookupBool(
    523     bool *status,                    ///< Status of lookup.
    524     const psMetadata *md,                    ///< Metadata collection to lookup metadata item.
     523    bool *status,                      ///< Status of lookup.
     524    const psMetadata *md,              ///< Metadata collection to lookup metadata item.
    525525    const char *key                    ///< Name of metadata key.
    526526);
     
    535535 */
    536536psPtr psMetadataLookupPtr(
    537     bool *status,                    ///< Status of lookup.
    538     const psMetadata* md,                    ///< Metadata collection to lookup metadata item.
     537    bool *status,                      ///< Status of lookup.
     538    const psMetadata* md,              ///< Metadata collection to lookup metadata item.
    539539    const char *key                    ///< Name of metadata key.
    540540);
     
    548548 */
    549549psMetadataItem* psMetadataGet(
    550     psMetadata*  md,                   ///< Metadata collection to retrieve metadata item.
    551     psS32 location                     ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
     550    const psMetadata* md,              ///< Metadata collection to retrieve metadata item.
     551    int location                       ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
    552552);
    553553
     
    585585 */
    586586psMetadataItem* psMetadataGetAndIncrement(
    587     psMetadataIterator* iterator           ///< iterator to move
     587    psMetadataIterator* iterator       ///< iterator to move
    588588);
    589589
     
    596596 */
    597597psMetadataItem* psMetadataGetAndDecrement(
    598     psMetadataIterator* iterator           ///< iterator to move
     598    psMetadataIterator* iterator       ///< iterator to move
    599599);
    600600
Note: See TracChangeset for help on using the changeset viewer.