summaryrefslogtreecommitdiff
path: root/src/date_type.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/date_type.h')
-rw-r--r--src/date_type.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/date_type.h b/src/date_type.h
index 49b006c60..67122b0b1 100644
--- a/src/date_type.h
+++ b/src/date_type.h
@@ -46,10 +46,14 @@ typedef int32 Year;
typedef uint8 Month;
typedef uint8 Day;
+/**
+ * Data structure to convert between Date and triplet (year, month, and day).
+ * @see ConvertDateToYMD(), ConvertYMDToDate()
+ */
struct YearMonthDay {
- Year year;
- Month month; ///< 0 - 11
- Day day; ///< 1 - 31
+ Year year; ///< Year (0...)
+ Month month; ///< Month (0..11)
+ Day day; ///< Day (1..31)
};
static const Year INVALID_YEAR = -1;