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