Google

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 // Last Edited:     April 15, 2001, 10:34:50pm 
00008 // Modified by:     
00009 // Copyright:       (c) Aaron Darling 
00010 // Licenses:        Proprietary 
00012 #ifndef _gnVersion_h_
00013 #define _gnVersion_h_
00014 
00015 /* Increment with each new version */
00016 /* Build number with each build, minor with minor changes, major with major API changes */
00017 #define gnMAJOR_VERSION         0
00018 #define gnMINOR_VERSION         1
00019 #define gnBUILD_NUMBER          0
00020 #define gnVERSION_STRING        "libGenome 0.1.0"
00021 #define gnVERSION_NUMBER        (gnMAJOR_VERSION * 1000) + (gnMINOR_VERSION * 100) + gnRELEASE_NUMBER
00022 #define gnBETA_NUMBER           1
00023 #define gnVERSION_FLOAT         gnMAJOR_VERSION + (gnMINOR_VERSION/10.0) + (gnRELEASE_NUMBER/100.0) + (gnBETA_NUMBER/10000.0)
00024 
00025 #endif
00026         //_gnVersion_h_

Generated at Fri Nov 30 15:36:52 2001 for libGenome by doxygen1.2.8.1 written by Dimitri van Heesch, © 1997-2001