mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
3dce5de12d
And it actually helped me to find a bug. yey. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
14 lines
240 B
C++
14 lines
240 B
C++
#ifndef TESTDIVESITEDUPLICATION_H
|
|
#define TESTDIVESITEDUPLICATION_H
|
|
|
|
#include <QTest>
|
|
#include <functional>
|
|
|
|
class TestPreferences : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void testPreferences();
|
|
};
|
|
|
|
#endif // TESTDIVESITEDUPLICATION_H
|