/*
* $Header: C:/cvsroot/Vert03/versionlib/version.c,v 1.2 2004/06/22 21:44:14 mjames Exp $
*
* $Log: version.c,v $
* Revision 1.2 2004/06/22 21:44:14 mjames
* Firrst build most files
*
* Revision 1.1.1.1 2003/11/04 23:34:56 mjames
* Imported into local repositrory
*
* Revision 1.7 2002/12/04 22:42:20 mjames
* Initial release Eagle PCB reader
*
* Revision 1.6 2002/08/23 14:03:16 mjames
* Version string split up so that require command is possible
*
* Revision 1.5 2002/01/03 16:36:10 mjames
* Method of accessing Vertical version changed to avoid
* global variable
*
* Revision 1.4 2001/10/31 22:20:19 mjames
* Tidying up problematical comments caused by CVS
* 'intelligent' comment guessing
*
* Revision 1.3 2001/09/16 19:54:27 mjames
* tidying
*
* Revision 1.2 2001/09/13 21:05:52 mjames
* Changed version code to reflect major differences in the features of the
* code
*
* Revision 1.1 2001/07/09 10:04:34 mjames
* Placed the version string in an independent file to save time on building
* all of the variants of Vertical
*
*/
#include "version.h"
#include <stdio.h>
#include <string.h>
/* modifications to avoid global variables: using access functions instead */
#define VERSION_NUMBER "17.0"
#define VERSION_RELEASE " net rename"
char const Vertical_Version[] = VERSION_NUMBER;
char const Vertical_Time[] = __DATE__ " at " __TIME__;
char const Vertical_Release[] = VERSION_NUMBER VERSION_RELEASE;
void InitialiseVersionStrings (void)
{
}