knowL: Knowledge Libraries
Loading...
Searching...
No Matches
Test.h
1#include <QtTest/QtTest>
2
3#include "GeometryObject.h"
4
5namespace knowGIS
6{
7 template<typename _T_, std::enable_if_t<fmt::has_formatter<_T_, fmt::format_context>::value, bool> = true
8 char *toString(const _T_& p)
9 {
10 return QTest::toString(clog_qt::to_qstring(p));
11 }
12}