IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 29, 2009, 3:39:49 PM (17 years ago)
Author:
giebink
Message:

Doxygen place holders added

File:
1 edited

Legend:

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

    r15571 r21229  
     1/** @file ppArithVersion.c
     2 *
     3 *  @brief
     4 *
     5 *  @ingroup ppArith
     6 *
     7 *  @author IfA
     8 *  @version $Revision: 1.1.32.1 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2009-01-30 01:39:49 $
     10 *  Copyright 2009 Institute for Astronomy, University of Hawaii
     11 */
     12
    113#ifdef HAVE_CONFIG_H
    214#include <config.h>
     
    1022#include "ppArith.h"
    1123
    12 static const char *cvsTag = "$Name: not supported by cvs2svn $";// CVS tag name
     24static const char *cvsTag = "$Name: not supported by cvs2svn $";/** CVS tag name */
    1325
    1426psString ppArithVersion(void)
    1527{
    16     psString version = NULL;            // Version, to return
     28    psString version = NULL;            /** Version, to return */
    1729    psStringAppend(&version, "%s-%s",PACKAGE_NAME,PACKAGE_VERSION);
    1830    return version;
     
    2133psString ppArithVersionLong(void)
    2234{
    23     psString version = ppArithVersion(); // Version, to return
     35    psString version = ppArithVersion(); /** Version, to return */
    2436    psString tag = psStringStripCVS(cvsTag, "Name"); // CVS tag
    2537    psStringAppend(&version, " (cvs tag %s) %s, %s", tag, __DATE__, __TIME__);
     
    3345    PS_ASSERT_METADATA_NON_NULL(metadata,);
    3446
    35     psString pslib = psLibVersionLong();// psLib version
    36     psString psmodules = psModulesVersionLong(); // psModules version
    37     psString ppStats = ppStatsVersionLong(); // ppStats version
    38     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 */
    3951
    40     psTime *time = psTimeGetNow(PS_TIME_TAI); // The time now
    41     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 */
    4254    psFree(time);
    43     psString head = NULL;               // Head string
     55    psString head = NULL;               /** Head string */
    4456    psStringAppend(&head, "ppArith processing at %s. Component information:", timeString);
    4557    psFree(timeString);
Note: See TracChangeset for help on using the changeset viewer.