// Qt includes #include // hyperionincludes #include #include /// This class handles callbacks from the V4L2 grabber class ScreenshotHandler : public QObject { Q_OBJECT public: ScreenshotHandler(const QString & filename); virtual ~ScreenshotHandler(); public slots: /// Handle a single image /// @param image The image to process void receiveImage(const Image & image); private: const QString _filename; };