From c3171d0cf1a249618f0763fe141ab84d8a4be240 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingo=20Kl=C3=B6cker?= Date: Tue, 15 Aug 2023 11:56:40 +0200 Subject: qt: Make toLogString helper public * lang/qt/src/util.h: Move toLogString ... * lang/qt/src/debug.h: ... here. * lang/qt/tests/run-importjob.cpp (main): Use toLogString. -- This allows using the helper in dependent projects without duplicating it everywhere. GnuPG-bug-id: 6584 --- lang/qt/src/debug.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'lang/qt/src/debug.h') diff --git a/lang/qt/src/debug.h b/lang/qt/src/debug.h index 791726ca..03894768 100644 --- a/lang/qt/src/debug.h +++ b/lang/qt/src/debug.h @@ -36,6 +36,8 @@ #include "qgpgme_export.h" +#include + namespace GpgME { class Error; @@ -45,4 +47,18 @@ class QDebug; QGPGME_EXPORT QDebug operator<<(QDebug debug, const GpgME::Error &err); +namespace QGpgME +{ +/** + * Helper to log GpgME objects which provide the output stream operator. + */ +template +std::string toLogString(const GpgMEClass &object) +{ + std::stringstream stream; + stream << object; + return stream.str(); +} +} + #endif // QGPGME_DEBUG_H -- cgit v1.2.3