- Timestamp:
- Jan 30, 2009, 12:00:45 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branch_20081230/ppArith/src/ppArithVersion.c
r21229 r21239 6 6 * 7 7 * @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 $ 10 10 * Copyright 2009 Institute for Astronomy, University of Hawaii 11 11 */ … … 22 22 #include "ppArith.h" 23 23 24 static const char *cvsTag = "$Name: not supported by cvs2svn $";/ ** CVS tag name */24 static const char *cvsTag = "$Name: not supported by cvs2svn $";///< CVS tag name 25 25 26 26 psString ppArithVersion(void) 27 27 { 28 psString version = NULL; / ** Version, to return */28 psString version = NULL; ///< Version, to return 29 29 psStringAppend(&version, "%s-%s",PACKAGE_NAME,PACKAGE_VERSION); 30 30 return version; … … 33 33 psString ppArithVersionLong(void) 34 34 { 35 psString version = ppArithVersion(); / ** Version, to return */36 psString tag = psStringStripCVS(cvsTag, "Name"); // CVS tag35 psString version = ppArithVersion(); ///< Version, to return 36 psString tag = psStringStripCVS(cvsTag, "Name"); ///< CVS tag 37 37 psStringAppend(&version, " (cvs tag %s) %s, %s", tag, __DATE__, __TIME__); 38 38 psFree(tag); … … 45 45 PS_ASSERT_METADATA_NON_NULL(metadata,); 46 46 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 51 51 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 54 54 psFree(time); 55 psString head = NULL; / ** Head string */55 psString head = NULL; ///< Head string 56 56 psStringAppend(&head, "ppArith processing at %s. Component information:", timeString); 57 57 psFree(timeString);
Note:
See TracChangeset
for help on using the changeset viewer.
