diff TestFramework.cpp @ 2:2833b7f8884a

Sql backend is working. Need to get more speed on comparisson.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Tue, 21 Aug 2012 14:25:33 +0200
parents
children f711ddb56ae7
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TestFramework.cpp	Tue Aug 21 14:25:33 2012 +0200
@@ -0,0 +1,12 @@
+#include <QtCore/QString>
+#include <QtCore/QDateTime>
+
+std::ostream& operator<<(std::ostream& out, const QString& rhs)
+{
+  return out << rhs.toStdString();
+}
+
+std::ostream& operator<<(std::ostream& out, const QDateTime& rhs)
+{
+  return out << rhs.toString();
+}