36 lines
485 B
C++
36 lines
485 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license BSD v3 (see license file)
|
|
*/
|
|
|
|
#include <date/date.h>
|
|
|
|
int32_t date::getYear(void) {
|
|
return BUILD_YEAR;
|
|
}
|
|
|
|
int32_t date::getMonth(void) {
|
|
return BUILD_MONTH;
|
|
}
|
|
|
|
int32_t date::getDay(void) {
|
|
return BUILD_DAY;
|
|
}
|
|
|
|
int32_t date::getHour(void) {
|
|
return BUILD_HOUR;
|
|
}
|
|
|
|
int32_t date::getMinute(void) {
|
|
return BUILD_MINUTE;
|
|
}
|
|
|
|
int32_t date::getSecond(void) {
|
|
return BUILD_SECOND;
|
|
}
|
|
|
|
|