summaryrefslogtreecommitdiffstats
path: root/xbmc/utils/Screenshot.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/utils/Screenshot.h')
-rw-r--r--xbmc/utils/Screenshot.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/xbmc/utils/Screenshot.h b/xbmc/utils/Screenshot.h
new file mode 100644
index 0000000..8642ca3
--- /dev/null
+++ b/xbmc/utils/Screenshot.h
@@ -0,0 +1,28 @@
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
18class CScreenShot
19{
20public:
21 static void Register(std::function<std::unique_ptr<IScreenshotSurface>()> createFunc);
22
23 static void TakeScreenshot();
24 static void TakeScreenshot(const std::string &filename, bool sync);
25
26private:
27 static std::vector<std::function<std::unique_ptr<IScreenshotSurface>()>> m_screenShotSurfaces;
28};