date.hpp
1 
8 #pragma once
9 
10 #include <cstdint>
11 
15 namespace date {
20  int32_t getYear();
25  int32_t getMonth();
30  int32_t getDay();
35  int32_t getHour();
40  int32_t getMinute();
45  int32_t getSecond();
46 };
47 
int32_t getSecond()
Get the Build second.
int32_t getHour()
Get the Build hour.
date library namespace
Definition: date.hpp:15
int32_t getMinute()
Get the Build Minute.
int32_t getYear()
Get the Build year of the program.
int32_t getMonth()
Get the Build month id.
int32_t getDay()
Get the Build day in the month.