-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTiempo.cpp
59 lines (50 loc) · 1.06 KB
/
Tiempo.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 "Tiempo.h"
Tiempo* Tiempo::instance = NULL;
Tiempo::Tiempo()
{
//ctor
this->tiempoFijo = NULL;
this->fijo = false;
}
Tiempo* Tiempo::getInstance()
{
if(instance == NULL)
instance = new Tiempo();
return instance;
}
void Tiempo::setTiempo(int dd, int mm, int aaaa)
{
if(this->tiempoFijo != NULL)
{
delete this->tiempoFijo;
}
this->tiempoFijo = new Date(dd, mm, aaaa);
this->fijo = true;
}
Date* Tiempo::now()
{
if(this->fijo)
{
return this->tiempoFijo;
}
else
{
time_t currentTime;
struct tm *localTime;
time( ¤tTime ); // Get the current time
localTime = localtime( ¤tTime ); // Convert the current time to the local time
int Day = localTime->tm_mday;
int Month = localTime->tm_mon + 1;
int Year = localTime->tm_year + 1900;
return new Date(Day, Month, Year);
}
}
Tiempo::~Tiempo()
{
//dtor
if(this->fijo)
{
delete this->tiempoFijo;
}
this->fijo=false;
}