/* * 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; }; }