Skip to content
Snippets Groups Projects
Commit 5a2e1b18 authored by mgy20's avatar mgy20
Browse files

Adicionado headers

parent f3cbccc0
Branches
No related tags found
No related merge requests found
#include "./Biblioteca.hpp"
#ifndef __BIBLIOTECA__
#define __BIBLIOTECA__
class Biblioteca {
private:
public:
};
#endif // !__BIBLIOTECA__
#include "./ControladorObras.hpp"
#ifndef __CONTROLADOR_OBRAS__
#define __CONTROLADOR_OBRAS__
class ControladorObras {
private:
public:
};
#endif // !__CONTROLADOR_OBRAS__
#ifndef __CONTROLADOR_USUARIOS__
#define __CONTROLADOR_USUARIOS__
#include <vector>
class ControladorUsuarios {
};
#endif // !__CONTROLADOR_USUARIOS__
#ifndef __DESCRICAO_OBRA__
#define __DESCRICAO_OBRA__
class DescricaoObra {
private:
public:
};
#endif // !__DESCRICAO_OBRA__
#ifndef __EMPRESTIMO__
#define __EMPRESTIMO__
class Emprestimo {
private:
public:
};
#endif // !__EMPRESTIMO__
#ifndef __OBRA__
#define __OBRA__
class Obra {
private:
public:
};
#endif // !__OBRA__
#include "Usuario.hpp"
using namespace std;
Usuario create();
bool Usuario::emprestart(){
return 0;
}
bool Usuario::devolver(){
return 0;
}
int Usuario::atualizarMulta(){
return 0;
}
int Usuario::getMulta(){
return 0;
}
bool Usuario::pagarMulta(){
return 0;
}
#ifndef __USUARIO__
#define __USUARIO__
#include <string>
using namespace std;
class Usuario {
private:
string nome;
string CPF;
string endereco;
string telefone;
string email;
int multas;
//Emprestimos emp;
public:
Usuario create();
bool emprestart();
bool devolver();
int atualizarMulta();
int getMulta();
bool pagarMulta();
};
#endif // !__USUARIO__
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment