| 1060 | QString BridgeApp::random_string(const int length, const QString &setname) { return GenerateRandomString(length, setname); } |
| 1061 | |
| 1062 | int BridgeApp::random_int(const int min, const int max) { return GenerateRandomInt(min, max); } |
| 1063 | |
| 1064 | void BridgeApp::register_commands_group(QObject *obj, const QJSValue &agents, const QJSValue &os, const QJSValue &listeners) |
| 1065 | { |
nothing calls this directly
no test coverage detected