-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclasseSemente.hpp
51 lines (36 loc) · 1.32 KB
/
classeSemente.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 CLASSE_SEMENTE_HPP
#define CLASSE_SEMENTE_HPP
#include <iostream>
#include <string>
class semente{
private:
//atributos:
int _id_tipo;
bool _produz_frutos;
int _tempo_colheita; //indica de quanto em quanto tempo a planta da frutos(meses)
std::string _clima_ideal;
std::string _solo_ideal;
float _irrigacao_ideal;
int _expectativaCrescimento; //tempo estimado p/ maturacao da planta(dias)
float _expectativaTaxaDeGerminacao; //%
float _expectativaTaxaDeSobrevivencia; //%
float _expectativaIncidenciaPragasDoencas; //Porcentagem de plantas afetadas por problemas fitossanitários
public:
//metodos:
semente(); //construtor (em teoria, todos os atributos serao definidos aqui)
semente(int id); //sobrecarga do construtor
~semente(); //destrutor
void exibirDetalhes(); // Exibe todas as informações da semente
void registrarNovaSemente();
//de inicio, nao faz sentido ter seteres dos atributos dessa classe
//gets:
int get_id_tipo();
int get_tempo_colheita();
std::string get_clima_ideal();
std::string get_solo_ideal();
int get_expectativaCrescimento();
float get_expectativaTaxaDeGerminacao();
float get_expectativaTaxaDeSobrevivencia();
float get_expectativaIncidenciaPragasDoencas();
};
#endif