#include "Bank.h" void Bank::addCustomer(Customer &newCustomer) { numCustomers++; theCustomers.add(newCustomer); } void Bank::displayAllCustomers() { int i; for (i = 0; i < theCustomers.size(); ++i) { theCustomers.at(i)->toString();//doesn't seem to print anything } cout << theCustomers.at(0)->getName() << endl;//nor does this }