mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
ISO8601: Made some methods const
This commit is contained in:
parent
5110a83efa
commit
4f11740896
2 changed files with 10 additions and 10 deletions
|
@ -47,11 +47,11 @@ public:
|
|||
operator time_t () const;
|
||||
bool parse (const std::string&, std::string::size_type&, const std::string& format = "");
|
||||
|
||||
time_t toEpoch ();
|
||||
std::string toEpochString ();
|
||||
std::string toISO ();
|
||||
double toJulian ();
|
||||
void toMDY (int&, int&, int&);
|
||||
time_t toEpoch () const;
|
||||
std::string toEpochString () const;
|
||||
std::string toISO () const;
|
||||
double toJulian () const;
|
||||
void toMDY (int&, int&, int&) const;
|
||||
const std::string toString (const std::string& format = "m/d/Y") const;
|
||||
|
||||
ISO8601d startOfDay () const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue