Mercurial > dedupe
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 1:aae83c0a771d | 2:2833b7f8884a |
|---|---|
| 1 #include <QtCore/QString> | |
| 2 #include <QtCore/QDateTime> | |
| 3 | |
| 4 std::ostream& operator<<(std::ostream& out, const QString& rhs) | |
| 5 { | |
| 6 return out << rhs.toStdString(); | |
| 7 } | |
| 8 | |
| 9 std::ostream& operator<<(std::ostream& out, const QDateTime& rhs) | |
| 10 { | |
| 11 return out << rhs.toString(); | |
| 12 } |
