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