aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/helloswift/hello.swift
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/helloswift/hello.swift')
-rw-r--r--tests/manual/helloswift/hello.swift21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/manual/helloswift/hello.swift b/tests/manual/helloswift/hello.swift
new file mode 100644
index 0000000000..99043c328d
--- /dev/null
+++ b/tests/manual/helloswift/hello.swift
@@ -0,0 +1,21 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import Greeter
+
+public class SwiftGreeter {
+ private let qtImpl: Greeter
+
+ public init(greeter: Greeter ) {
+ self.qtImpl = greeter;
+ }
+
+ public var greeting: String {
+ let greetings = ["Hello", "Howdy", "Hey", "Hola", "Heisan"]
+ return greetings[Int.random(in: 0..<greetings.count)]
+ }
+
+ public func updateGreeting() {
+ qtImpl.greetingChanged();
+ }
+}