mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-11 15:56:58 -04:00
15 lines
275 B
C++
15 lines
275 B
C++
#ifndef BITCOIN_QT_TEST_ADDRESSBOOKTESTS_H
|
|
#define BITCOIN_QT_TEST_ADDRESSBOOKTESTS_H
|
|
|
|
#include <QObject>
|
|
#include <QTest>
|
|
|
|
class AddressBookTests : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
void addressBookTests();
|
|
};
|
|
|
|
#endif // BITCOIN_QT_TEST_ADDRESSBOOKTESTS_H
|