IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4788


Ignore:
Timestamp:
Aug 16, 2005, 11:06:33 AM (21 years ago)
Author:
drobbin
Message:

added psMetadataAddBool

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

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/types/psMetadata.c

    r4610 r4788  
    1212*  @author Ross Harman, MHPCC
    1313*
    14 *  @version $Revision: 1.74 $ $Name: not supported by cvs2svn $
    15 *  @date $Date: 2005-07-26 00:44:45 $
     14*  @version $Revision: 1.75 $ $Name: not supported by cvs2svn $
     15*  @date $Date: 2005-08-16 21:06:33 $
    1616*
    1717*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    413413}
    414414
     415METADATA_ADD_TYPE(Bool,psBool,PS_META_BOOL)
    415416METADATA_ADD_TYPE(S32,psS32,PS_META_S32)
    416417METADATA_ADD_TYPE(F32,psF32,PS_META_F32)
  • trunk/psLib/src/types/psMetadata.h

    r4610 r4788  
    1111*  @author Ross Harman, MHPCC
    1212*
    13 *  @version $Revision: 1.56 $ $Name: not supported by cvs2svn $
    14 *  @date $Date: 2005-07-26 00:44:45 $
     13*  @version $Revision: 1.57 $ $Name: not supported by cvs2svn $
     14*  @date $Date: 2005-08-16 21:06:33 $
    1515*
    1616*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    299299#endif // #ifndef SWIG
    300300
     301/** Add a psBool value to metadata collection.
     302 *
     303 *  @return bool:  True for success, False for failure.
     304 */
     305bool psMetadataAddBool(
     306    psMetadata* md,                    ///< Metadata collection to insert metadata item
     307    long location,                     ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
     308    const char* name,                  ///< Name of metadata item
     309    const char* comment,               ///< Comment for metadata item
     310    psBool value                       ///< Value for metadata item data
     311);
     312
    301313/** Add a psS32 value to metadata collection.
    302314 *
Note: See TracChangeset for help on using the changeset viewer.