ISO8601d: Added ::ISO8601 (time_t)
This commit is contained in:
@@ -119,6 +119,13 @@ ISO8601d::ISO8601d ()
|
||||
_date = time (NULL);
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
ISO8601d::ISO8601d (const time_t t)
|
||||
{
|
||||
clear ();
|
||||
_date = t;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
ISO8601d::~ISO8601d ()
|
||||
{
|
||||
|
||||
@@ -38,6 +38,7 @@ public:
|
||||
static int minimumMatchLength;
|
||||
|
||||
ISO8601d ();
|
||||
ISO8601d (time_t);
|
||||
~ISO8601d ();
|
||||
ISO8601d (const ISO8601d&); // Unimplemented
|
||||
ISO8601d& operator= (const ISO8601d&); // Unimplemented
|
||||
|
||||
Reference in New Issue
Block a user