Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

gnVersion.h

Go to the documentation of this file.
00001 /////////////////////////////////////////////////////////////////////////////
00002 // File:            gn/gnVersion.h
00003 // Purpose:         Defines libGenome version info
00004 // Description:     Defines Version info
00005 // Rev:             A
00006 // Author:          Aaron Darling 
00007 // Modified by:     
00008 // Copyright:       (c) Aaron Darling 
00009 // Licenses:        See COPYING file for details 
00010 /////////////////////////////////////////////////////////////////////////////
00011 #ifndef _gnVersion_h_
00012 #define _gnVersion_h_
00013 
00014 /* Increment with each new version */
00015 /* Build number with each build, minor with minor changes, major with major API changes */
00016 #define gnMAJOR_VERSION         0
00017 #define gnMINOR_VERSION         5
00018 #define gnBUILD_NUMBER          1
00019 #define gnVERSION_STRING        "libGenome 0.5.1"
00020 #define gnVERSION_NUMBER        (gnMAJOR_VERSION * 1000) + (gnMINOR_VERSION * 100) + gnRELEASE_NUMBER
00021 #define gnBETA_NUMBER           1
00022 #define gnVERSION_FLOAT         gnMAJOR_VERSION + (gnMINOR_VERSION/10.0) + (gnRELEASE_NUMBER/100.0) + (gnBETA_NUMBER/10000.0)
00023 
00024 #endif
00025         //_gnVersion_h_

Generated on Mon Feb 3 02:34:42 2003 for libGenome by doxygen1.3-rc3