1234567891011121314151617181920212223242526 |
- #ifndef EXTERNALSIM_H
- #define EXTERNALSIM_H
- #include <QObject>
- #include <QUrl>
- class ExternalSim : public QObject
- {
- Q_OBJECT
- public:
- uint32_t PlatformID;
- uint32_t InstanceID;
- bool SwitchMode;
- QString Name;
- QUrl SimulatorUrl;
- explicit ExternalSim(QObject *parent = nullptr, uint32_t PlatformID = 0,
- uint32_t InstanceID = 0, bool SwitchMode = false,
- QString Name = QString::fromLocal8Bit("未知模拟器"),
- QUrl SimulationUrl = QUrl(QStringLiteral("ws://localhost:1235")));
- signals:
- };
- #endif // EXTERNALSIM_H
|