home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / db02_src.zip / version.h < prev   
C/C++ Source or Header  |  1993-11-05  |  1KB  |  51 lines

  1. /**************************************************************************
  2.  * Source Id :
  3.  *
  4.  * $Id: version.h,v 1.4 1993/11/05 12:46:26 kevinl Exp $
  5.  *-------------------------------------------------------------------------
  6.  * Project Notes :
  7.  *
  8.  *  Diamond Base
  9.  *  ============
  10.  *      A solid database implementation, spurred on by the continuing
  11.  *  Metal (Lead) Base saga.
  12.  *
  13.  *  Project Team :
  14.  *        A. Davison
  15.  *        K. Lentin
  16.  *        D. Platt
  17.  *
  18.  *    Project Commenced : 05-02-1993
  19.  *
  20.  *-------------------------------------------------------------------------
  21.  *  Module Notes :
  22.  *
  23.  *  The current version details.  There is no $Log: version.h,v $
  24.  * Revision 1.4  1993/11/05  12:46:26  kevinl
  25.  * yet another
  26.  *
  27.  * Revision 1.3  1993/09/06  13:35:57  kevinl
  28.  * A new version. What else?
  29.  *
  30.  * Revision 1.2  1993/07/11  13:12:58  kevinl
  31.  * 0.1.3 released
  32.  *
  33.  * Revision 1.1  1993/05/11  15:15:54  kevinl
  34.  * Initial revision
  35.  *. A bit pointless really
  36.  *
  37.  *  Original Author : Krazy Kev (well, I wouldn't call it Authoring here!)
  38.  *
  39.  **************************************************************************/
  40.  
  41. #ifndef __VERSION_H
  42. #define __VERSION_H
  43.  
  44. const VERSION_MAJOR = 0;
  45. const VERSION_MINOR = 2;
  46. const PATCH_LEVEL = 0;
  47. const char* PATCH_STATUS = "(beta)";
  48. const char* RELEASE_DATE = "93/11/05";
  49.  
  50. #endif
  51.