26 lines
486 B
C++
26 lines
486 B
C++
#ifndef RM_TEST_CONTROLS_H
|
|
#define RM_TEST_CONTROLS_H
|
|
#if (RM_TESTING)
|
|
#include <QObject>
|
|
|
|
class RMTestControls : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit RMTestControls(QObject *parent = nullptr);
|
|
static RMTestControls* instance()
|
|
{
|
|
static RMTestControls * _instance = 0;
|
|
if ( _instance == 0 ) {
|
|
_instance = new RMTestControls();
|
|
}
|
|
return _instance;
|
|
}
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif
|
|
#endif // RM_TEST_CONTROLS_H
|