ISO8601: Implemented ::dayNameShort and ::monthNameShort

- Added tests.
This commit is contained in:
Paul Beckingham
2015-11-01 18:01:24 -05:00
parent 9143d8b8e7
commit 7a48d25eaa
3 changed files with 80 additions and 13 deletions

View File

@@ -67,7 +67,9 @@ public:
static int daysInMonth (int, int);
static int daysInYear (int);
static std::string monthName (int);
static std::string monthNameShort (int);
static std::string dayName (int);
static std::string dayNameShort (int);
static int dayOfWeek (const std::string&);
static int dayOfWeek (int, int, int);
static int monthOfYear (const std::string&);