IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 30, 2009, 12:00:45 PM (17 years ago)
Author:
giebink
Message:

Doxygen comments made consistent

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branch_20081230/ppArith/src/ppArithVersion.c

    r21229 r21239  
    66 *
    77 *  @author IfA
    8  *  @version $Revision: 1.1.32.1 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2009-01-30 01:39:49 $
     8 *  @version $Revision: 1.1.32.2 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2009-01-30 22:00:45 $
    1010 *  Copyright 2009 Institute for Astronomy, University of Hawaii
    1111 */
     
    2222#include "ppArith.h"
    2323
    24 static const char *cvsTag = "$Name: not supported by cvs2svn $";/** CVS tag name */
     24static const char *cvsTag = "$Name: not supported by cvs2svn $";///< CVS tag name
    2525
    2626psString ppArithVersion(void)
    2727{
    28     psString version = NULL;            /** Version, to return */
     28    psString version = NULL;            ///< Version, to return
    2929    psStringAppend(&version, "%s-%s",PACKAGE_NAME,PACKAGE_VERSION);
    3030    return version;
     
    3333psString ppArithVersionLong(void)
    3434{
    35     psString version = ppArithVersion(); /** Version, to return */
    36     psString tag = psStringStripCVS(cvsTag, "Name"); // CVS tag
     35    psString version = ppArithVersion(); ///< Version, to return
     36    psString tag = psStringStripCVS(cvsTag, "Name"); ///< CVS tag
    3737    psStringAppend(&version, " (cvs tag %s) %s, %s", tag, __DATE__, __TIME__);
    3838    psFree(tag);
     
    4545    PS_ASSERT_METADATA_NON_NULL(metadata,);
    4646
    47     psString pslib = psLibVersionLong();/** psLib version */
    48     psString psmodules = psModulesVersionLong(); /** psModules version */
    49     psString ppStats = ppStatsVersionLong(); /** ppStats version */
    50     psString ppArith = ppArithVersionLong(); /** ppArith version */
     47    psString pslib = psLibVersionLong();///< psLib version
     48    psString psmodules = psModulesVersionLong(); ///< psModules version
     49    psString ppStats = ppStatsVersionLong(); ///< ppStats version
     50    psString ppArith = ppArithVersionLong(); ///< ppArith version
    5151
    52     psTime *time = psTimeGetNow(PS_TIME_TAI); /** The time now */
    53     psString timeString = psTimeToISO(time); /** The time in an ISO string */
     52    psTime *time = psTimeGetNow(PS_TIME_TAI); ///< The time now
     53    psString timeString = psTimeToISO(time); ///< The time in an ISO string
    5454    psFree(time);
    55     psString head = NULL;               /** Head string */
     55    psString head = NULL;               ///< Head string
    5656    psStringAppend(&head, "ppArith processing at %s. Component information:", timeString);
    5757    psFree(timeString);
Note: See TracChangeset for help on using the changeset viewer.