summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers/UIInterfaces/LoginWindowFactory.h')
-rw-r--r--Swift/Controllers/UIInterfaces/LoginWindowFactory.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/Swift/Controllers/UIInterfaces/LoginWindowFactory.h b/Swift/Controllers/UIInterfaces/LoginWindowFactory.h
new file mode 100644
index 0000000..d2dc31b
--- /dev/null
+++ b/Swift/Controllers/UIInterfaces/LoginWindowFactory.h
@@ -0,0 +1,23 @@
+#ifndef SWIFTEN_LoginWindowFactory_H
+#define SWIFTEN_LoginWindowFactory_H
+
+
+
+namespace Swift {
+ class LoginWindow;
+ class String;
+ class UIEventStream;
+
+ class LoginWindowFactory {
+ public:
+ virtual ~LoginWindowFactory() {};
+
+ /**
+ * Transfers ownership of result.
+ */
+ virtual LoginWindow* createLoginWindow(UIEventStream* uiEventStream) = 0;
+
+ };
+}
+#endif
+