File indexing completed on 2025-02-09 05:18:01
0001 /* This file is part of Spectacle, the KDE screenshot utility 0002 * SPDX-FileCopyrightText: 2019 Boudhayan Gupta <bgupta@kde.org> 0003 0004 * SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include "ImagePlatform.h" 0010 #include "VideoPlatform.h" 0011 #include <memory> 0012 0013 using ImagePlatformPtr = std::unique_ptr<ImagePlatform>; 0014 ImagePlatformPtr loadImagePlatform(); 0015 0016 using VideoPlatformPtr = std::unique_ptr<VideoPlatform>; 0017 VideoPlatformPtr loadVideoPlatform();