IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 6, 2007, 11:36:09 AM (19 years ago)
Author:
jhoblitt
Message:

use 'bool' instead of psBool where-ever possible

Location:
trunk/psLib/src/astro
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astro/psCoord.c

    r11618 r11668  
    1010*  @author GLG, MHPCC
    1111*
    12 *  @version $Revision: 1.132 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2007-02-03 06:01:42 $
     12*  @version $Revision: 1.133 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2007-02-06 21:36:09 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    151151Why isn't this called p_psIsPlaneTransformLinear()?
    152152 *****************************************************************************/
    153 psBool p_psIsProjectionLinear(psPlaneTransform *transform)
     153bool p_psIsProjectionLinear(psPlaneTransform *transform)
    154154{
    155155    PS_ASSERT_PTR_NON_NULL(transform, false);
  • trunk/psLib/src/astro/psCoord.h

    r11248 r11668  
    88 *  @author GLG, MHPCC
    99 *
    10  *  @version $Revision: 1.56 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2007-01-23 22:47:22 $
     10 *  @version $Revision: 1.57 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2007-02-06 21:36:09 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    321321 *  the order of the projection
    322322*/
    323 psBool p_psIsProjectionLinear(
     323bool p_psIsProjectionLinear(
    324324    psPlaneTransform *transform        ///< transform to test for linearity
    325325);
  • trunk/psLib/src/astro/psTime.c

    r10999 r11668  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.108 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2007-01-09 22:38:52 $
     12 *  @version $Revision: 1.109 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2007-02-06 21:36:09 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    12681268{
    12691269    psTime*    prevUtc     = NULL;
    1270     psBool     returnValue = false;
     1270    bool     returnValue = false;
    12711271
    12721272    // Check for valid time
  • trunk/psLib/src/astro/psTime.h

    r11248 r11668  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.54 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2007-01-23 22:47:22 $
     13 *  @version $Revision: 1.55 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2007-02-06 21:36:09 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    8585 * @return bool:    True for success, false for failure.
    8686 */
    87 psBool p_psTimeInit(
     87bool p_psTimeInit(
    8888    const char *fileName               ///< File name containing config/data info
    8989);
     
    103103 * @return void:    void.
    104104 */
    105 psBool p_psTimeFinalize(void);
     105bool p_psTimeFinalize(void);
    106106
    107107/** Frees memory that was allocated by psTime functions.
Note: See TracChangeset for help on using the changeset viewer.