ISO8601: Added separate ::isoEnabled settings for ISO8601d and ISO8601p

This commit is contained in:
Paul Beckingham 2015-10-04 10:58:28 -04:00
parent 9adfddfe65
commit 61e494195a
3 changed files with 27 additions and 8 deletions

View file

@ -36,6 +36,7 @@ class ISO8601d
public:
static std::string weekstart;
static int minimumMatchLength;
static bool isoEnabled;
ISO8601d ();
ISO8601d (const std::string&, const std::string& format = "");
@ -138,6 +139,8 @@ public:
class ISO8601p
{
public:
static bool isoEnabled;
ISO8601p ();
ISO8601p (time_t);
ISO8601p (const std::string&);