mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
ee1bf18189
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
16 lines
298 B
C++
16 lines
298 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef TESTDIVESITEDUPLICATION_H
|
|
#define TESTDIVESITEDUPLICATION_H
|
|
|
|
#include <QTest>
|
|
#include <functional>
|
|
|
|
class TestPreferences : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void initTestCase();
|
|
void testPreferences();
|
|
};
|
|
|
|
#endif // TESTDIVESITEDUPLICATION_H
|