/* * Copyright (c) 2012 Yoann Blein * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #pragma once namespace Swift { class Image; class DesktopScreenGrabber { public: virtual ~DesktopScreenGrabber() {} virtual Image grab() const = 0; }; }