first commit

This commit is contained in:
2026-02-21 17:11:31 +09:00
commit 18b4338361
4001 changed files with 365464 additions and 0 deletions

View 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