We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b71b06 commit 8b9ab0aCopy full SHA for 8b9ab0a
bigintegerobject.cpp
@@ -214,3 +214,10 @@ class BigIntegerWrapperRegistrationHelper {
214
};
215
216
static BigIntegerWrapperRegistrationHelper registerHelper;
217
+
218
+QDebug operator<<(QDebug d, const BigInteger &bigInteger)
219
+{
220
+ d << QString::fromStdString(bigIntegerToString(bigInteger));
221
222
+ return d;
223
+}
bigintegerobject.h
@@ -1,6 +1,7 @@
1
#pragma once
2
#include <QObject>
3
#include <QJSValue>
4
+#include "BigInteger.hh"
5
6
// QML Wrapper Object for BigInteger manipulation
7
@@ -50,3 +51,4 @@ public slots:
50
51
52
53
54
+QDebug operator<< (QDebug d, const BigInteger &bigInteger);
0 commit comments