-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRelatorio.hpp
51 lines (34 loc) · 1.22 KB
/
Relatorio.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#ifndef RELATORIO_HPP
#define RELATORIO_HPP
#include <iostream>
class Relatorio{
private:
int _id_relatorio;
int _id_semente;
int _tempo_colheita; //indica de quanto em quanto tempo a planta da frutos(meses)
float _irrigacao;
int _CrescimentoVerificado; //tempo estimado p/ maturacao da planta(dias)
float _GerminacaoVerificado; //%
float _SobrevivenciaVerificado; //%
float _PragasDoencasVerificado; //Porcentagem de plantas afetadas por problemas fitossanitários
public:
Relatorio();
~Relatorio();
void set_id_relatorio(int id);
int get_id_relatorio();
void set_id_semente(int id);
int get_id_semente();
void set_tempo_colheita(int tempo);
int get_tempo_colheita();
void set_irrigacao(float irrigacao);
float get_irrigacao();
void set_crescimento(int crescimento);
int get_crescimento();
void set_geminacao(float germinacao);
float get_germinacao();
void set_sobrevivencia(float sobrevivencia);
float get_sobrevivencia();
void set_pragasDoencas(float pragasDoencas);
float get_pragasDoencas();
};
#endif