Exemplo n.º 1
0
void Banco::crear_cuenta() {
  Cuenta c;
  c.leer_cuenta();
  list<Cuenta>::iterator it = cuentas.begin();
  cuentas.insert(it, c);
}