IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4610 for trunk/psLib/src/types


Ignore:
Timestamp:
Jul 25, 2005, 2:44:45 PM (21 years ago)
Author:
drobbin
Message:

made some doxygen comments and formatting updates

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

Legend:

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

    r4556 r4610  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-07-15 02:33:54 $
     14 *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-07-26 00:44:45 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5454 *  @return  psBitSet* : Pointer to struct containing array of bits and size of array.
    5555 */
    56 
    57 /*@null@*/
    5856psBitSet* psBitSetAlloc(
    5957    long nalloc                            ///< Number of bits in psBitSet array
     
    7068 */
    7169psBitSet* psBitSetSet(
    72     /* @returned@ */
    7370    psBitSet* bitSet,                  ///< Pointer to psBitSet to be set.
    7471    long bit                           ///< Bit to be set.
     
    9693 *  value of one, since that is the value that was set.
    9794 *
    98  *  @return  int: Value of bit, either one or zero.
     95 *  @return  bool:      True if successful, otherwise false
    9996 */
    10097
  • trunk/psLib/src/types/psMetadata.c

    r4590 r4610  
    1212*  @author Ross Harman, MHPCC
    1313*
    14 *  @version $Revision: 1.73 $ $Name: not supported by cvs2svn $
    15 *  @date $Date: 2005-07-21 02:39:57 $
     14*  @version $Revision: 1.74 $ $Name: not supported by cvs2svn $
     15*  @date $Date: 2005-07-26 00:44:45 $
    1616*
    1717*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  • trunk/psLib/src/types/psMetadata.h

    r4590 r4610  
    1111*  @author Ross Harman, MHPCC
    1212*
    13 *  @version $Revision: 1.55 $ $Name: not supported by cvs2svn $
    14 *  @date $Date: 2005-07-21 02:39:57 $
     13*  @version $Revision: 1.56 $ $Name: not supported by cvs2svn $
     14*  @date $Date: 2005-07-26 00:44:45 $
    1515*
    1616*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    238238psMetadataItem* psMetadataItemAllocV(
    239239    const char *name,                  ///< Name of metadata item.
    240     psDataType type,               ///< Type of metadata item.
     240    psDataType type,                   ///< Type of metadata item.
    241241    const char *comment,               ///< Comment for metadata item.
    242242    va_list list                       ///< Arguments for name formatting and metadata item data.
     
    329329bool psMetadataAddF64(
    330330    psMetadata* md,                    ///< Metadata collection to insert metadata item
    331     long location,                    ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
     331    long location,                     ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
    332332    const char* name,                  ///< Name of metadata item
    333333    const char* comment,               ///< Comment for metadata item
     
    401401psBool psMetadataAddHash(
    402402    psMetadata* md,                    ///< Metadata collection to insert metadata item
    403     long location,                    ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
     403    long location,                     ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
    404404    const char* name,                  ///< Name of metadata item
    405405    const char* comment,               ///< Comment for metadata item
     
    551551psMetadataItem* psMetadataGet(
    552552    const psMetadata* md,              ///< Metadata collection to retrieve metadata item.
    553     int location                      ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
     553    int location                       ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
    554554);
    555555
Note: See TracChangeset for help on using the changeset viewer.