Files
fmviewer3/project/fm_viewer/tester/rm_test_controls.h
2026-02-21 17:11:31 +09:00

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