#include <kdganttglobal.h>
Definition at line 254 of file kdganttglobal.h.
Public Member Functions | |
DateTimeSpan (const DateTimeSpan &other) | |
DateTimeSpan (const QDateTime &start, const QDateTime &end) | |
DateTimeSpan () | |
QDateTime | end () const |
bool | equals (const DateTimeSpan &other) const |
bool | isValid () const |
DateTimeSpan & | operator= (const DateTimeSpan &other) |
void | setEnd (const QDateTime &end) |
void | setStart (const QDateTime &start) |
QDateTime | start () const |
~DateTimeSpan () |
DateTimeSpan::DateTimeSpan | ( | ) |
DateTimeSpan::DateTimeSpan | ( | const QDateTime & | start, | |
const QDateTime & | end | |||
) |
DateTimeSpan::DateTimeSpan | ( | const DateTimeSpan & | other | ) |
DateTimeSpan::~DateTimeSpan | ( | ) |
QDateTime KDGantt::DateTimeSpan::end | ( | ) | const |
bool DateTimeSpan::equals | ( | const DateTimeSpan & | other | ) | const |
Definition at line 116 of file kdganttglobal.cpp.
References m_end, and m_start.
Referenced by KDGantt::operator!=().
bool DateTimeSpan::isValid | ( | ) | const |
DateTimeSpan & DateTimeSpan::operator= | ( | const DateTimeSpan & | other | ) |
void KDGantt::DateTimeSpan::setEnd | ( | const QDateTime & | end | ) |
Definition at line 268 of file kdganttglobal.h.
Referenced by KDAB_SCOPED_UNITTEST_SIMPLE().
00269 { m_end=end; }
void KDGantt::DateTimeSpan::setStart | ( | const QDateTime & | start | ) |
Definition at line 265 of file kdganttglobal.h.
Referenced by KDAB_SCOPED_UNITTEST_SIMPLE().
00266 { m_start=start; }
QDateTime KDGantt::DateTimeSpan::start | ( | ) | const |
Definition at line 266 of file kdganttglobal.h.
Referenced by operator<<().
00266 { m_start=start; }