##// END OF EJS Templates
Added DateTimeRange unit Tests...
Added DateTimeRange unit Tests Added tests: - delta computation test - Shift based on + operator overloading - Zoom based on * operator overloading Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org> Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r0:86b06c4cec3c
r6:d9ddd9092db4
Show More
QtWrappers.h
19 lines | 370 B | text/x-c | CLexer
#pragma once
#include <QString>
#include <QUuid>
#include <QDate>
#include <QTime>
#include <string>
#include <sstream>
std::ostream &operator <<(std::ostream& os, const QString& qstr)
{
os << qstr.toStdString();
return os;
}
std::ostream &operator <<(std::ostream& os, const QUuid& uuid)
{
os << "QUuid:" << uuid.toString() << std::endl;
return os;
}