//******************************************************************* // NAME : Consuelo Silva, Mark Glaeser, Llewellyn Kohler * // S.S.N. : * // COURSE : COP 2221.052 * // DUE DATE : November 23, 1999 * // PROG #5 : This program shows the use of classes, * // separate compilation, oop, etc. * // Oriented Programming structures called classes. * // VERSION : Visual C++ 6.0, Borland 4.52 * // * // bank.cpp - main initiates the shopping events. * // bank.h - has the class definition and the * // predefinitions * // bankf.cpp - holds the methods and function * // definitions. * // * //******************************************************************* #include #include "bank.h" #include "bank2.h" int main( ) { driver(); return 0; }