##// END OF EJS Templates
[CPP utils] Added function alias macro...
[CPP utils] Added function alias macro Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r0:86b06c4cec3c
r39:cc47cd67a7b3
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;
}