summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/QtUI/ScreenSharing/QtDesktopScreenGrabber.h')
-rw-r--r--Swift/QtUI/ScreenSharing/QtDesktopScreenGrabber.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/Swift/QtUI/ScreenSharing/QtDesktopScreenGrabber.h b/Swift/QtUI/ScreenSharing/QtDesktopScreenGrabber.h
new file mode 100644
index 0000000..55a7842
--- /dev/null
+++ b/Swift/QtUI/ScreenSharing/QtDesktopScreenGrabber.h
@@ -0,0 +1,19 @@
+/*
+ * 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/ScreenSharing/DesktopScreenGrabber.h"
+
+namespace Swift {
+ class QtDesktopScreenGrabber : public DesktopScreenGrabber {
+ public:
+ QtDesktopScreenGrabber();
+ virtual ~QtDesktopScreenGrabber();
+
+ virtual Image grab() const;
+ };
+}