QGIS API Documentation
3.8.0-Zanzibar (11aff65)
|
#include "qgsinterval.h"
#include "qgis.h"
#include <QString>
#include <QStringList>
#include <QMap>
#include <QObject>
#include <QDebug>
#include <QDateTime>
Go to the source code of this file.
Functions | |
QDateTime | operator+ (const QDateTime &start, QgsInterval interval) |
QgsInterval | operator- (const QDateTime &dt1, const QDateTime &dt2) |
Returns the interval between two datetimes. More... | |
QgsInterval | operator- (QDate date1, QDate date2) |
Returns the interval between two dates. More... | |
QgsInterval | operator- (QTime time1, QTime time2) |
Returns the interval between two times. More... | |
QDebug | operator<< (QDebug dbg, const QgsInterval &interval) |
Debug string representation of interval. More... | |
QDateTime operator+ | ( | const QDateTime & | start, |
QgsInterval | interval | ||
) |
Definition at line 124 of file qgsinterval.cpp.
QgsInterval operator- | ( | const QDateTime & | datetime1, |
const QDateTime & | datetime2 | ||
) |
Returns the interval between two datetimes.
datetime1 | start datetime |
datetime2 | datetime to subtract, ie subtract datetime2 from datetime1 |
Definition at line 118 of file qgsinterval.cpp.
QgsInterval operator- | ( | QDate | date1, |
QDate | date2 | ||
) |
Returns the interval between two dates.
date1 | start date |
date2 | date to subtract, ie subtract date2 from date1 |
Definition at line 129 of file qgsinterval.cpp.
QgsInterval operator- | ( | QTime | time1, |
QTime | time2 | ||
) |
Returns the interval between two times.
time1 | start time |
time2 | time to subtract, ie subtract time2 from time1 |
Definition at line 135 of file qgsinterval.cpp.
QDebug operator<< | ( | QDebug | dbg, |
const QgsInterval & | interval | ||
) |
Debug string representation of interval.
Definition at line 109 of file qgsinterval.cpp.