IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4330 for trunk/psLib/src/types


Ignore:
Timestamp:
Jun 20, 2005, 5:01:37 PM (21 years ago)
Author:
drobbin
Message:

* empty log message *

Location:
trunk/psLib/src/types
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/types/psList.h

    r4316 r4330  
    77 *  @ingroup LinkedList
    88 *
    9  *  @version $Revision: 1.26 $ $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 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    107107 *  iterator position is not changed.
    108108 *
    109  *  @return psBool        TRUE if iterator successfully set, otherwise FALSE.
     109 *  @return bool        TRUE if iterator successfully set, otherwise FALSE.
    110110 */
    111111bool psListIteratorSet(
     
    116116/** Adds an element to a psList at position given.
    117117 *
    118  *  @return psBool        TRUE if item was successfully added, otherwise FALSE.
     118 *  @return bool        TRUE if item was successfully added, otherwise FALSE.
    119119 */
    120120bool psListAdd(
     
    126126/** Adds an data item to a psList at position just after the list position given
    127127 *
    128  *  @return psBool        TRUE if item was successfully added, otherwise FALSE.
     128 *  @return bool        TRUE if item was successfully added, otherwise FALSE.
    129129 */
    130130bool psListAddAfter(
     
    135135/** Adds an data item to a psList at position just before the list position given
    136136 *
    137  *  @return psBool        TRUE if item was successfully added, otherwise FALSE.
     137 *  @return bool        TRUE if item was successfully added, otherwise FALSE.
    138138 */
    139139bool psListAddBefore(
     
    144144/** Remove an item at the specified location from a list.
    145145 *
    146  *  @return psBool        TRUE if element is successfully removed, otherwise FALSE.
     146 *  @return bool        TRUE if element is successfully removed, otherwise FALSE.
    147147 */
    148148bool psListRemove(
     
    153153/** Remove an item from a list.
    154154 *
    155  *  @return psBool        TRUE if element is successfully removed, otherwise FALSE.
     155 *  @return bool        TRUE if element is successfully removed, otherwise FALSE.
    156156 */
    157157bool psListRemoveData(
  • trunk/psLib/src/types/psMetadata.h

    r4321 r4330  
    1111*  @author Ross Harman, MHPCC
    1212*
    13 *  @version $Revision: 1.49 $ $Name: not supported by cvs2svn $
    14 *  @date $Date: 2005-06-20 22:42:29 $
     13*  @version $Revision: 1.50 $ $Name: not supported by cvs2svn $
     14*  @date $Date: 2005-06-21 03:01:37 $
    1515*
    1616*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    274274    int location,                      ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
    275275    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)
    277277    const char *comment,               ///< Comment for metadata item.
    278278    ...                                ///< Arguments for name formatting and metadata item data.
     
    298298/** Add a psS32 value to metadata collection.
    299299 * 
    300  *  @return psBool:  True for success, False for failure.
     300 *  @return bool:  True for success, False for failure.
    301301 */
    302302bool psMetadataAddS32(
     
    310310/** Add a psF32 value to metadata collection.
    311311 * 
    312  *  @return psBool:  True for success, False for failure.
     312 *  @return bool:  True for success, False for failure.
    313313*/
    314314bool psMetadataAddF32(
     
    322322/** Add a psF64 value to metadata collection.
    323323 * 
    324  *  @return psBool:  True for success, False for failure.
     324 *  @return bool:  True for success, False for failure.
    325325*/
    326326bool psMetadataAddF64(
     
    346346/** Add a string to metadata collection.
    347347 * 
    348  *  @return psBool:  True for success, False for failure.
     348 *  @return bool:  True for success, False for failure.
    349349 */
    350350bool psMetadataAddStr(
     
    505505 *  returned.
    506506 *
    507  * @return psBool : Value of metadata item.
    508  */
    509 psBool psMetadataLookupBool(
     507 * @return bool : Value of metadata item.
     508 */
     509bool psMetadataLookupBool(
    510510    bool *status,                    ///< Status of lookup.
    511511    const psMetadata *md,                    ///< Metadata collection to lookup metadata item.
     
    558558 *  invalid the iterator position is not changed.
    559559 *
    560  *  @return psBool        TRUE if iterator successfully set, otherwise FALSE.
     560 *  @return bool        TRUE if iterator successfully set, otherwise FALSE.
    561561*/
    562562bool psMetadataIteratorSet(
Note: See TracChangeset for help on using the changeset viewer.