IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 6, 2009, 9:45:30 AM (17 years ago)
Author:
giebink
Message:

inline Doxygen comments deleted

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppArith/src/ppArithVersion.c

    r21244 r21378  
    66 *
    77 *  @author IfA
    8  *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2009-02-01 21:40:52 $
     8 *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2009-02-06 19:45:30 $
    1010 *  Copyright 2009 Institute for Astronomy, University of Hawaii
    1111 */
     
    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.