We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c6133b commit 5115975Copy full SHA for 5115975
src/framework/interactive/interactivemodule.cpp
@@ -28,6 +28,7 @@
28
29
#include "internal/interactive.h"
30
#include "internal/interactiveuriregister.h"
31
+#include "internal/platforminteractive.h"
32
#include "types/uri.h"
33
34
#ifdef Q_OS_WASM
@@ -51,6 +52,7 @@ std::string InteractiveModule::moduleName() const
51
52
void InteractiveModule::registerExports()
53
{
54
globalIoc()->registerExport<IInteractiveUriRegister>(mname, new InteractiveUriRegister());
55
+ globalIoc()->registerExport<IPlatformInteractive>(mname, new PlatformInteractive());
56
}
57
58
void InteractiveModule::registerApi()
0 commit comments