aboutsummaryrefslogtreecommitdiff
path: root/src/qt/test/compattests.h
diff options
context:
space:
mode:
authorKarl-Johan Alm <karljohan-alm@garage.co.jp>2016-12-16 16:52:35 +0900
committerKalle Alm <kalle.alm@gmail.com>2016-12-17 12:27:00 +0900
commit815f4148b2eff6c64c764e910e79677d5a67adc7 (patch)
tree1b9e3e892ca7e6ec21b607a96b4c7ca97da1d3dd /src/qt/test/compattests.h
parentc9e00591cd3fce7b7cf20730922d45991ce9aece (diff)
Uses built-in byte swap if available (Apple) and if bswap_XX is undefined.
Defers to pre-defined version if found (e.g. protobuf). For protobuf case, the definitions are identical and thus include order should not affect results.
Diffstat (limited to 'src/qt/test/compattests.h')
-rw-r--r--src/qt/test/compattests.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/qt/test/compattests.h b/src/qt/test/compattests.h
new file mode 100644
index 0000000000..35dede7743
--- /dev/null
+++ b/src/qt/test/compattests.h
@@ -0,0 +1,19 @@
+// Copyright (c) 2009-2015 The Bitcoin Core developers
+// Distributed under the MIT software license, see the accompanying
+// file COPYING or http://www.opensource.org/licenses/mit-license.php.
+
+#ifndef BITCOIN_QT_TEST_COMPATTESTS_H
+#define BITCOIN_QT_TEST_COMPATTESTS_H
+
+#include <QObject>
+#include <QTest>
+
+class CompatTests : public QObject
+{
+ Q_OBJECT
+
+private Q_SLOTS:
+ void bswapTests();
+};
+
+#endif // BITCOIN_QT_TEST_COMPATTESTS_H