-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruta.h
80 lines (61 loc) · 1.54 KB
/
ruta.h
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
#ifndef ruta_h
#define ruta_h
#include <string>
using namespace std;
class Ruta{
private:
string codigo_p;
string codigo_l;
string nombre_p;
string nombre_l;
string ciudad_p;
string ciudad_l;
string pais_p;
string pais_l;
int costo;
int ascii_p;
int ascii_l;
public:
// Constructores
// PRE: Datos validos
// POST: Crea el objeto Ruta
Ruta(string cp, string cl, string np, string nl, string cip, string cil, string pp, string pl, int cos);
// PRE: -
// POST: Crea el objeto Ruta vacio
Ruta();
// Metodos
// PRE: -
// POST: Devuelve el codigo de partida
string obtenerCp();
// PRE: -
// POST: Devuelve el codigo del destino
string obtenerCl();
// PRE: -
// POST: Devuelve el nombre del aeropuerto de partida
string obtenerNp();
// PRE: -
// POST: Devuelve el nombre del aeropuerto destino
string obtenerNl();
// PRE: -
// POST: Devuelve la ciudad de partida
string obtenerCip();
// PRE: -
// POST: Devuelve la ciudad destino
string obtenerCil();
// PRE: -
// POST: Devuelve el pais de partida
string obtenerPp();
// PRE: -
// POST: Devuelve el pais destino
string obtenerPl();
// PRE: -
// POST: Devuelve el costo
int obtenerCos();
// PRE: -
// POST: Devuelve el ascii de partida
int obtenerAscii_p();
// PRE: -
// POST: Devuelve el ascii destino
int obtenerAscii_l();
};
#endif /* ruta_h */