string ContoCorrente::toString() const { std::stringstream dts, cts; dts << getSaldo(); cts << commissionePrelievo; return "ContoCorrente (Prelievo: " + cts.str() + "): \n " + getNome() + " " + getCognome() + "\t SALDO: " + dts.str() + "\n"; }
QString Tesserato::getInfo() const{ QString info; info.append(getCognome() + " "); info.append(getNome() + " "); return info; }