##// END OF EJS Templates
Update PB11 and catalogicpp...
Update PB11 and catalogicpp Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r0:86b06c4cec3c
r89:521f9540ac01
Show More
QtWrappers.h
19 lines | 370 B | text/x-c | CLexer
First init from SciQLop Core module...
r0 #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;
}