kodi
Screenshot.h
1 /*
2  * Copyright (C) 2005-2018 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 #include "IScreenshotSurface.h"
12 
13 #include <functional>
14 #include <memory>
15 #include <string>
16 #include <vector>
17 
19 {
20 public:
21  static void Register(const std::function<std::unique_ptr<IScreenshotSurface>()>& createFunc);
22 
23  static void TakeScreenshot();
24  static void TakeScreenshot(const std::string &filename, bool sync);
25 
26 private:
27  static std::vector<std::function<std::unique_ptr<IScreenshotSurface>()>> m_screenShotSurfaces;
28 };
Definition: Screenshot.h:18