mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 05:30:41 +00:00
12 lines
185 B
C
12 lines
185 B
C
|
#ifndef TESTUNITCONVERSION_H
|
||
|
#define TESTUNITCONVERSION_H
|
||
|
|
||
|
#include <QtTest>
|
||
|
|
||
|
class TestUnitConversion : public QObject{
|
||
|
Q_OBJECT
|
||
|
private slots:
|
||
|
void testUnitConversions();
|
||
|
};
|
||
|
|
||
|
#endif
|