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

  1. /**************************************************************************
  2.  * Source Id :
  3.  *
  4.  * $Id: version.cc,v 1.1 1993/05/11 15:14:13 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.  *  Output version info for submission with bugs/comments etc
  24.  *
  25.  *  Original Author : Krazy Kev
  26.  *
  27.  *-------------------------------------------------------------------------
  28.  * Revision History:
  29.  *
  30.  * $Log: version.cc,v $
  31. // Revision 1.1  1993/05/11  15:14:13  kevinl
  32. // Initial revision
  33. //
  34.  **************************************************************************/
  35.  
  36. #include "dbase.h"
  37. #include <iostream.h>
  38.  
  39. diamondBase theDiamondBase;
  40.  
  41. int main(void)
  42. {
  43.     cout << theDiamondBase.version(true);
  44.     return 0;
  45. }
  46.