#ifndef __EMPRESTIMO__
#define __EMPRESTIMO__

#include "./DescricaoObra.hpp"

class Emprestimo {
  private:
    int dataEmprestimo;
    DescricaoObra descricao;

  public:
    // Constructor
    Emprestimo();
    Emprestimo(int data, DescricaoObra descricao);
    void mostraDetalhes() const;

    // Methods
    void removeEmprestimo();
    string getDescricaoTitulo();

};

#endif // !__EMPRESTIMO__