home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / main.cxx < prev    next >
C/C++ Source or Header  |  1996-05-31  |  686b  |  33 lines

  1. /*---------------------------------------------------------------------------
  2.  *
  3.  *    File        : @(#)main.cxx    1.1
  4.  *    Author        : frmo
  5.  *    Original date    : 6-7-1993
  6.  *    Description    : Example main
  7.  *              Usage: main <database name>
  8.  *
  9.  *---------------------------------------------------------------------------
  10.  */
  11.  
  12. #include <stream.h>
  13.  
  14. #ifndef DBOBJECT_HXX
  15. #include "DBObject.hxx"
  16. #endif
  17.  
  18. main(int argc, char *argv[])
  19. {
  20.     if (argc != 2) {
  21.         cerr << "Usage: " << argv[0] << " <database name>" << endl;
  22.         return 1;
  23.     }
  24.     if (DBObject::connectDB(argv[1]) < 0) {
  25.         cerr << "Connect failed" << endl;
  26.         return 1;
  27.     }
  28.  
  29.     // Application specific stuff goes here
  30.  
  31.     return 0;
  32. }
  33.