home *** CD-ROM | disk | FTP | other *** search
- #include "version.hxx"
- #include <stream.h>
-
- /*
- -*++ about(): prints data about the DAIMS project & interpreter
- **
- ** (*++ history:
- ** 7 Dec 87 Bruce Eckel Creation date
- ** ++*)
- **
- ** (*++ detailed:
- ** ++*)
- */
-
- void about()
- {
- cout << form("\nDAIMS version %2.2f (Beta release) Date: %2d/%2d/%2d\n",
- VERSION, VMONTH, VDAY, VYEAR);
- cout << "Programmer: Bruce Eckel\n";
- cout << "DAIMS: Data Analysis & Interactive Modeling System\n";
- cout << "Funded by Office of Naval Research\n";
- cout << "Principal investigators:\n";
- cout << " Tom Keffer at the University of Washington School of Oceanography\n";
- cout << " Dale Haidvogel at Woods Hole\n\n";
- cout << "The DAIMS interpreter was written using GNU Bison, PD Lex and C++.\n";
- cout << "All DAIMS sources are in the public domain.\n";
- cout << "If sources are not included in this package, they can be obtained\n";
- cout << "by mailing a tape or cartridge with a pre-paid return envelope to:\n";
- cout << " Bruce Eckel/DAIMS\n";
- cout << " School Of Oceanography, WB-10\n";
- cout << " University of Washington\n";
- cout << " Seattle, WA 98195\n";
- }
-
-
-
-