/** \file * \brief Library Management * * See Copyright Notice in im_lib.h * $Id: im_lib.cpp,v 1.6 2010/04/23 17:45:44 scuri Exp $ */ #include #include #include "im_lib.h" /* This appears only here to avoid changing the im_lib.h header for bug fixes */ #define IM_VERSION_FIX ".1" #define IM_VERSION_FIX_NUMBER 1 static char *iVersion = "TECVERID.str:IM:LIB:" IM_VERSION IM_VERSION_FIX; const char iIdent[] = "$IM: " IM_VERSION IM_VERSION_FIX " " IM_COPYRIGHT " $\n" "$URL: www.tecgraf.puc-rio.br/im $\n"; const char* imVersion(void) { (void)iVersion; (void)iIdent; return IM_VERSION IM_VERSION_FIX; } const char* imVersionDate(void) { return IM_VERSION_DATE; } int imVersionNumber(void) { return IM_VERSION_NUMBER+IM_VERSION_FIX_NUMBER; }