15 Revista(
string t,
string a,
string i,
string c,
int e,
int numCopias);
20 string getTipo()
const override;
Classe base para representar um livro na biblioteca.
Definition Livro.h:15
Classe que representa uma revista na biblioteca.
Definition Revista.h:13
void setEdicao(int e)
Define a edição da revista.
Definition Revista.cpp:60
int getEdicao() const
Obtém a edição da revista.
Definition Revista.cpp:31
Revista(string t, string a, string i, string c, int e, int numCopias)
Construtor da classe Revista.
Definition Revista.cpp:13
string getTipo() const override
Obtém o tipo da revista.
Definition Revista.cpp:51
int getPrazoEmprestimo() const
Obtém o prazo de empréstimo da revista.
Definition Revista.cpp:41
void EditarInformacoesLivro() override
Edita as informações da revista.
Definition Revista.cpp:72
virtual ~Revista()
Destrutor da classe Revista.
Definition Revista.cpp:21
int edicao
Definition Revista.h:24