summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers/UIInterfaces/RemoteScreenWindowFactory.h')
-rw-r--r--Swift/Controllers/UIInterfaces/RemoteScreenWindowFactory.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Swift/Controllers/UIInterfaces/RemoteScreenWindowFactory.h b/Swift/Controllers/UIInterfaces/RemoteScreenWindowFactory.h
new file mode 100644
index 0000000..7c78777
--- /dev/null
+++ b/Swift/Controllers/UIInterfaces/RemoteScreenWindowFactory.h
@@ -0,0 +1,21 @@
+/*
+ * Copyright (c) 2012 Yoann Blein
+ * Licensed under the simplified BSD license.
+ * See Documentation/Licenses/BSD-simplified.txt for more information.
+ */
+
+#pragma once
+
+#include "Swift/Controllers/UIInterfaces/RemoteScreenWindow.h"
+
+#include <boost/shared_ptr.hpp>
+
+namespace Swift {
+ class IncomingScreenSharing;
+ class RemoteScreenWindowFactory {
+ public:
+ virtual ~RemoteScreenWindowFactory() {}
+
+ virtual RemoteScreenWindow* createRemoteScreenViewer(boost::shared_ptr<IncomingScreenSharing> iss) = 0;
+ };
+}