mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
55d010bad8
The C code should be compilable without the need to compile the Gui part, too. This is expecially good for unit testing as we can test all the algorithms without a window appearing out of nowhere. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
12 lines
160 B
C++
12 lines
160 B
C++
#ifndef TESTPROFILE_H
|
|
#define TESTPROFILE_H
|
|
|
|
#include <QtTest>
|
|
|
|
class TestProfile : public QObject{
|
|
Q_OBJECT
|
|
private slots:
|
|
void testRedCeiling();
|
|
};
|
|
|
|
#endif
|