##// END OF EJS Templates
removed libcatalogs :)...
removed libcatalogs :) Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r0:86b06c4cec3c
r56:1178d3ee560a
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;
}