#include "remover.hh" void remover(conexao c){ string isbn = digitarstring("ISBN"); bool b = c.remover(isbn); if(b == false){ cout << "Erro" << endl; } else { cout << "\nRemovido com sucesso" << endl; } }