Messy commit. Testing suff and some improvements to how data is shown.
This commit is contained in:
parent
bebb3391c3
commit
3a13b7ffb4
59 changed files with 2045 additions and 716 deletions
9
tests/mygtestutils/PrintTo_Qt.cpp
Normal file
9
tests/mygtestutils/PrintTo_Qt.cpp
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#include "PrintTo_Qt.h"
|
||||
|
||||
void PrintTo(const QDateTime &dt, ::std::ostream* os) {
|
||||
*os << dt.toString(Qt::ISODateWithMs).toUtf8().toStdString();
|
||||
}
|
||||
|
||||
void PrintTo(const QString &s, ::std::ostream* os) {
|
||||
*os << s.toUtf8().toStdString();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue