IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1211


Ignore:
Timestamp:
Jul 12, 2004, 3:04:37 PM (22 years ago)
Author:
harman
Message:

Added more function prototypes

Location:
trunk/psLib/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astro/psTime.h

    r1210 r1211  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-07-13 00:35:26 $
     11 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-07-13 01:04:37 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    5151);
    5252
     53/** Convert psTime to ISO time.
     54 *
     55 * Converts psTime to a null terminated string in the form of: YYYY/MM/DD,HH:MM:SS.SSS.
     56 *
     57 *  @return  char*: Pointer null terminated array of chars.
     58 */
     59char* psTimeToISOTime(
     60    psTime *time    /** Input time to be converted. */
     61);
     62
     63/** Convert psTime to UTC time.
     64 *
     65 * Converts psTime to UTC time in double precision floating point notation.
     66 *
     67 *  @return  double: UTC time in floating point notation.
     68 */
     69double psTimeToISOTime(
     70    psTime *time    /** Input time to be converted. */
     71);
     72
    5373/// @}
    5474
  • trunk/psLib/src/astronomy/psTime.h

    r1210 r1211  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-07-13 00:35:26 $
     11 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-07-13 01:04:37 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    5151);
    5252
     53/** Convert psTime to ISO time.
     54 *
     55 * Converts psTime to a null terminated string in the form of: YYYY/MM/DD,HH:MM:SS.SSS.
     56 *
     57 *  @return  char*: Pointer null terminated array of chars.
     58 */
     59char* psTimeToISOTime(
     60    psTime *time    /** Input time to be converted. */
     61);
     62
     63/** Convert psTime to UTC time.
     64 *
     65 * Converts psTime to UTC time in double precision floating point notation.
     66 *
     67 *  @return  double: UTC time in floating point notation.
     68 */
     69double psTimeToISOTime(
     70    psTime *time    /** Input time to be converted. */
     71);
     72
    5373/// @}
    5474
Note: See TracChangeset for help on using the changeset viewer.