| 964 | } |
| 965 | |
| 966 | QJSValue BridgeApp::interfaces() const |
| 967 | { |
| 968 | QVariantList list; |
| 969 | auto interfaces = scriptEngine->manager()->GetInterfaces(); |
| 970 | |
| 971 | for (const auto& addr : interfaces) |
| 972 | list.append(addr); |
| 973 | |
| 974 | return this->scriptEngine->engine()->toScriptValue(list); |
| 975 | } |
| 976 | |
| 977 | bool BridgeApp::is64(const QString &id) const |
| 978 | { |
nothing calls this directly
no test coverage detected