summaryrefslogtreecommitdiff
path: root/tests/auto/core/ivigenerator/projects/org-example-echo-qtro/server_qtro_test/echozonedservice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/core/ivigenerator/projects/org-example-echo-qtro/server_qtro_test/echozonedservice.cpp')
-rw-r--r--tests/auto/core/ivigenerator/projects/org-example-echo-qtro/server_qtro_test/echozonedservice.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/core/ivigenerator/projects/org-example-echo-qtro/server_qtro_test/echozonedservice.cpp b/tests/auto/core/ivigenerator/projects/org-example-echo-qtro/server_qtro_test/echozonedservice.cpp
index e5c6634..0010d89 100644
--- a/tests/auto/core/ivigenerator/projects/org-example-echo-qtro/server_qtro_test/echozonedservice.cpp
+++ b/tests/auto/core/ivigenerator/projects/org-example-echo-qtro/server_qtro_test/echozonedservice.cpp
@@ -263,3 +263,15 @@ QVariant EchoZonedService::timer(int interval, const QString &zone)
});
return QVariant::fromValue(pendingResult);
}
+
+QVariant EchoZonedService::flagMethod(EchoModule::AirflowDirections direction, const QString &zone)
+{
+ emit flagMethodCalled(direction, zone);
+ return QVariant::fromValue(direction);
+}
+
+QVariant EchoZonedService::enumMethod(EchoModule::TestEnum testEnum, const QString &zone)
+{
+ emit enumMethodCalled(testEnum, zone);
+ return QVariant::fromValue(testEnum);
+}