mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
ISO8601d: Added ::year
This commit is contained in:
parent
eeac423fd6
commit
af81b24d92
2 changed files with 8 additions and 0 deletions
|
@ -926,6 +926,13 @@ int ISO8601d::day () const
|
||||||
return t->tm_mday;
|
return t->tm_mday;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
int ISO8601d::year () const
|
||||||
|
{
|
||||||
|
struct tm* t = localtime (&_date);
|
||||||
|
return t->tm_year + 1900;
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
void ISO8601p::clear ()
|
void ISO8601p::clear ()
|
||||||
{
|
{
|
||||||
|
|
|
@ -56,6 +56,7 @@ public:
|
||||||
int month () const;
|
int month () const;
|
||||||
int week () const;
|
int week () const;
|
||||||
int day () const;
|
int day () const;
|
||||||
|
int year () const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void clear ();
|
void clear ();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue