mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-07 19:13:23 +00:00
14 lines
198 B
C++
14 lines
198 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#ifndef TESTPROFILE_H
|
|
#define TESTPROFILE_H
|
|
|
|
#include <QtTest>
|
|
|
|
class TestProfile : public QObject {
|
|
Q_OBJECT
|
|
private slots:
|
|
void testRedCeiling();
|
|
};
|
|
|
|
#endif
|