00001 /* @file pmVersion.h 00002 * @brief Version functions 00003 * 00004 * @author Paul Price, IfA 00005 * @author Eugene Magnier, IfA 00006 * 00007 * @version $Revision: 1.2 $ $Name: $ 00008 * @date $Date: 2007/01/24 01:05:41 $ 00009 * Copyright 2005-2006 Institute for Astronomy, University of Hawaii 00010 */ 00011 00012 #ifndef PM_VERSION_H 00013 #define PM_VERSION_H 00014 00015 /// @addtogroup Config Configuration System 00016 /// @{ 00017 00018 #include <pslib.h> 00019 00020 /** Get current psModules version 00021 * 00022 * Returns the current psModules version name as a string. 00023 * 00024 * @return psString: String with version name. 00025 */ 00026 psString psModulesVersion( 00027 void 00028 ); 00029 00030 /** Get current psModules version (full identification) 00031 * 00032 * Returns the current psModules version name and other information identifying the compilation. 00033 * 00034 * @return psString: String with identity. 00035 */ 00036 psString psModulesVersionLong(void); 00037 00038 00039 /// @} 00040 #endif
1.5.1