mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-07 23:36:15 +00:00
14 lines
257 B
C++
14 lines
257 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef TESTDIVESITEDUPLICATION_H
|
|
#define TESTDIVESITEDUPLICATION_H
|
|
|
|
#include <QTest>
|
|
|
|
class TestDiveSiteDuplication : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void testReadV2();
|
|
};
|
|
|
|
#endif // TESTDIVESITEDUPLICATION_H
|