summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-04-30 14:18:29 +0100
committerCarl Hetherington <cth@carlh.net>2015-04-30 14:18:29 +0100
commit6d52a032276e7de4bf1c8630f5a9c1b35b0173d7 (patch)
treed393f934d84cdabe1377b44a7547b0229adbbecf /src
parentfa1dddf081a35fde2479f6a23088b608ee956437 (diff)
Add comments.
Diffstat (limited to 'src')
-rw-r--r--src/local_time.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/local_time.h b/src/local_time.h
index 00b32f10..9798c2c3 100644
--- a/src/local_time.h
+++ b/src/local_time.h
@@ -47,12 +47,12 @@ private:
void set_local_time_zone ();
/* Local time */
- int _year;
- int _month;
- int _day;
- int _hour;
- int _minute;
- int _second;
+ int _year; ///< year
+ int _month; ///< month number of the year (1-12)
+ int _day; ///< day number of the month (1-31)
+ int _hour; ///< hour number of the day (0-23)
+ int _minute; ///< minute number of the hour (0-59)
+ int _second; ///< second number of the minute (0-59)
/* Amount by which this time is offset from UTC */
int _tz_hour;