first commit
This commit is contained in:
25
project/fm_viewer/tester/rm_test_controls.h
Normal file
25
project/fm_viewer/tester/rm_test_controls.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user