aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/time.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-06-21 19:34:55 +0000
committerlloyd <[email protected]>2010-06-21 19:34:55 +0000
commit3f1f7c92953dea2e51e3a31049e2a3a273d76d18 (patch)
tree56f73413dbee1dcc25dbccf904b842cb682d4016 /src/utils/time.h
parent89ae6f4bc2ff25dc5625875e0cb57b78b28a0b6e (diff)
Doxygen
Diffstat (limited to 'src/utils/time.h')
-rw-r--r--src/utils/time.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/utils/time.h b/src/utils/time.h
index fa1e379a7..56d15513c 100644
--- a/src/utils/time.h
+++ b/src/utils/time.h
@@ -18,11 +18,24 @@ namespace Botan {
*/
struct BOTAN_DLL calendar_point
{
+ /** The year */
u32bit year;
+
+ /** The month, 1 through 12 for Jan to Dec */
byte month;
+
+ /** The day of the month, 1 through 31 (or 28 or 30 based on month */
byte day;
+
+ /** Hour in 24-hour form, 0 to 23 */
byte hour;
+
+ /** Minutes in the hour, 0 to 60 */
byte minutes;
+
+ /** Seconds in the minute, 0 to 60, but might be slightly
+ larger to deal with leap seconds on some systems
+ */
byte seconds;
/**