-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRegistro.h
93 lines (77 loc) · 1.84 KB
/
Registro.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
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
* Programación de estructuras de datos y algoritmos fundamentales
* Clase Registro implementada en Actividad 1.3
*
* Equipo 13
*
* Fernando Doddoli Lankenau - A00827038
* Mauricio Eugenio Zambrano Díaz - A00827055
* Cristóbal Alberto Escamilla Sada - A00827074
*
* 11 de septiembre del 2020
*/
#ifndef Registro_h
#define Registro_h
class Registro{
private:
string mes;
int dia;
string hora;
string direccionIP;
string razon;
int claveOrden;
public:
Registro(string, int, string, string, string);
int crearClave(string, int);
bool operator<=(Registro);
bool operator>(int);
bool operator==(int);
bool operator!=(int);
friend ostream& operator<<(ostream&, Registro);
};
Registro::Registro(string mes, int dia, string hora, string direccionIP, string razon){
this->mes = mes;
this->dia = dia;
this->hora = hora;
this->direccionIP = direccionIP;
this->razon = razon;
claveOrden = crearClave(mes, dia);
}
int Registro::crearClave(string mes, int dia){
if(mes == "Jun")
return 600 + dia;
if(mes == "Jul")
return 700 + dia;
if(mes == "Aug")
return 800 + dia;
if(mes == "Sep")
return 900 + dia;
if(mes == "Oct")
return 1000 + dia;
return -1;
}
bool Registro::operator<=(Registro r){
if(claveOrden <= r.claveOrden)
return true;
return false;
}
bool Registro::operator>(int n){
if(claveOrden > n)
return true;
return false;
}
bool Registro::operator==(int n){
if(claveOrden == n)
return true;
return false;
}
bool Registro::operator!=(int n){
if(claveOrden != n)
return true;
return false;
}
ostream& operator<<(ostream& os, Registro r){
os << r.mes << ' ' << r.dia << ' ' << r.hora << ' ' << r.direccionIP << r.razon;
return os;
}
#endif