##// END OF EJS Templates
Fixed tests due to async var creation, plus minor stuff...
Fixed tests due to async var creation, plus minor stuff A variable is created synchronously but its data is get in background so tests have now to wait until the variable is ready before checking its state. VC should have a [] operator, it's a model feature. The new data provider interface implies that each call only ask for one range, this has been reflected in its parameters. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r0:86b06c4cec3c
r30:02d2d8643fcb
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;
}