-
Notifications
You must be signed in to change notification settings - Fork 0
/
parada.cpp
80 lines (43 loc) · 1.2 KB
/
parada.cpp
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include "parada.h"
#include <string>
#include <stdexcept>
Parada::Parada(std::string direccion, int colectivo, long double lat, long double lon) {
if (colectivo < 1) {
throw std::invalid_argument("El numero del colectivo debe ser mayor o igual a 1");
} else {
this->direccion = direccion;
this->colectivo = colectivo;
this->lat = lat;
this->lon = lon;
}
}
Parada::Parada() {
this->direccion = "";
this->colectivo = 0;
this->lat = 0;
this->lon = 0;
}
std::string Parada::obtenerDireccion() {
return this->direccion;
}
int Parada::obtenerColectivo() {
return this->colectivo;
}
long double Parada::obtenerLatitud() {
return this->lat;
}
long double Parada::obtenerLongitud() {
return this->lon;
}
void Parada::cambiarDireccion(std::string direccion) {
this->direccion = direccion;
}
void Parada::cambiarColectivo(int colectivo) {
this->colectivo = colectivo;
}
void Parada::cambarLatitud(long double lat) {
this->lat = lat;
}
void Parada::cambiarLongitud(long double lon) {
this->lon = lon;
}