-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rota.hpp
43 lines (30 loc) · 860 Bytes
/
Rota.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
#ifndef ROTA_H
#define ROTA_H
#include <string>
#include <list>
#include "Turno.hpp"
#include "Funcionario.hpp"
using namespace std;
class Rota {
private:
list<Funcionario> OrdenaResidencias(list<Funcionario> Residentes);
//depois conferir como vai ser isso aqui...
protected:
list<Funcionario> Residentes;
list<string> RotaRealizada;
Turno Turnos;
float TempoPercurso;
list<float> TempoEmbarque;
void SetTempoEmbarque();
public:
Rota();
Rota(list<Funcionario> Residentes);
float calculaDistancia (float x1, float y1, float x2, float y2);
Turno GetTurnos();
list<string> GetRotaRealizada();
float GetTempoPercurso();
list<float> GetTempoEmbarque();
void SetTurnos(Turno Turnos);
void SetRotaRealizada();
};
#endif