#include "stdstuff.h" #include "CustomerDB.h" // the constructor creates an empty database CustomerDB::CustomerDB() { numCusts=0; // no customer yet (so nothing goes in the ci array) } // returns the number of customers in the database int CustomerDB::getNumCusts() const { return numCusts; } // put the rest of the methods here