-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fecha.cpp
59 lines (46 loc) · 1.3 KB
/
Fecha.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
#include <iostream>
#include <ctime>
#include <string>
#include "Fecha.h"
// Constructor por defecto que inicializa con la fecha actual
Fecha::Fecha() {
time_t t = time(nullptr);
struct tm* f = localtime(&t);
_dia = f->tm_mday;
_mes = f->tm_mon + 1;
_anio = f->tm_year + 1900;
}
// Constructor que permite establecer una fecha específica
Fecha:: Fecha(int dia, int mes, int anio) {
_dia = dia;
_mes = mes;
_anio = anio;
}
// Métodos get
int Fecha:: getDia() const {
return _dia;
}
int Fecha:: getMes() const {
return _mes;
}
int Fecha:: getAnio() const {
return _anio;
}
// Métodos set
void Fecha:: setDia(int dia) {
_dia = dia;
}
void Fecha:: setMes(int mes) {
_mes = mes;
}
void Fecha::setAnio(int anio) {
_anio = anio;
}
// Método para obtener la fecha en formato cadena
std::string Fecha:: toString() const {
return std::to_string(_dia) + "/" + std::to_string(_mes) + "/" + std::to_string(_anio);
}
// Método para obtener la fecha como cadena (alias para toString)
std::string Fecha:: getFecha() const {
return toString();
}