* add documentation

* add some more operator
* adjust some functions to behave properly an invalid values



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29792 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Karsten Heimrich 2009-03-29 20:18:16 +00:00
parent 79f3690f4a
commit 420a34c45e
2 changed files with 468 additions and 66 deletions

View File

@ -162,7 +162,17 @@ class BDateTime {
BTime Time() const;
void SetTime(const BTime &time);
uint32 Time_t() const;
int32 Time_t() const;
void SetTime_t(uint32 seconds);
bool operator!=(const BDateTime& dateTime) const;
bool operator==(const BDateTime& dateTime) const;
bool operator<(const BDateTime& dateTime) const;
bool operator<=(const BDateTime& dateTime) const;
bool operator>(const BDateTime& dateTime) const;
bool operator>=(const BDateTime& dateTime) const;
private:
BDate fDate;

File diff suppressed because it is too large Load Diff