mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 19:36:11 +00:00
17 lines
225 B
C++
17 lines
225 B
C++
|
|
#ifndef CUTTERTEST_H
|
|
#define CUTTERTEST_H
|
|
|
|
#include <QObject>
|
|
|
|
class CutterTest: public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
protected slots:
|
|
virtual void initTestCase();
|
|
virtual void cleanupTestCase();
|
|
};
|
|
|
|
#endif //CUTTERTEST_H
|