File indexing completed on 2024-11-17 05:01:16
0001 /* 0002 SPDX-FileCopyrightText: 2022 Thiago Sueto <herzenschein@gmail.com> 0003 SPDX-FileCopyrightText: 2022 Méven Car <meven@kde.org> 0004 0005 SPDX-License-Identifier: GPL-2.0-or-later 0006 */ 0007 0008 #ifndef COMPONENTCHOOSERVIDEOPLAYER_H 0009 #define COMPONENTCHOOSERVIDEOPLAYER_H 0010 0011 #include "componentchooser.h" 0012 0013 class ComponentChooserVideoPlayer : public ComponentChooser 0014 { 0015 public: 0016 ComponentChooserVideoPlayer(QObject *parent); 0017 0018 QStringList mimeTypes() const override; 0019 }; 0020 0021 #endif