home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / microcrn / issue_40.arc / DAIMS.ARC / ABOUT.CPP next >
Text File  |  1988-02-10  |  1KB  |  38 lines

  1. #include "version.hxx"
  2. #include <stream.h>
  3.  
  4. /* 
  5. -*++ about(): prints data about the DAIMS project & interpreter
  6. ** 
  7. ** (*++ history: 
  8. **      7 Dec 87    Bruce Eckel    Creation date
  9. ** ++*)
  10. ** 
  11. ** (*++ detailed: 
  12. ** ++*)
  13. */
  14.  
  15. void about()
  16. {
  17.   cout << form("\nDAIMS version %2.2f (Beta release) Date: %2d/%2d/%2d\n",
  18.            VERSION, VMONTH, VDAY, VYEAR);
  19.   cout << "Programmer: Bruce Eckel\n";
  20.   cout << "DAIMS: Data Analysis & Interactive Modeling System\n";
  21.   cout << "Funded by Office of Naval Research\n";
  22.   cout << "Principal investigators:\n";
  23.   cout << "    Tom Keffer at the University of Washington School of Oceanography\n";
  24.   cout << "    Dale Haidvogel at Woods Hole\n\n";
  25.   cout << "The DAIMS interpreter was written using GNU Bison, PD Lex and C++.\n";
  26.   cout << "All DAIMS sources are in the public domain.\n";
  27.   cout << "If sources are not included in this package, they can be obtained\n";
  28.   cout << "by mailing a tape or cartridge with a pre-paid return envelope to:\n";
  29.   cout << "    Bruce Eckel/DAIMS\n";
  30.   cout << "    School Of Oceanography, WB-10\n";
  31.   cout << "    University of Washington\n";
  32.   cout << "    Seattle, WA     98195\n";
  33. }
  34.     
  35.  
  36.     
  37.    
  38.