File indexing completed on 2024-12-22 04:40:09

0001 /*
0002     SPDX-FileCopyrightText: 2021-2022 Mladen Milinkovic <max@smoothware.net>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef WEBVTTOUTPUTFORMAT_H
0008 #define WEBVTTOUTPUTFORMAT_H
0009 
0010 #include "formats/outputformat.h"
0011 
0012 namespace SubtitleComposer {
0013 class WebVTTOutputFormat : public OutputFormat
0014 {
0015     friend class FormatManager;
0016 
0017 protected:
0018     QString dumpSubtitles(const Subtitle &subtitle, bool primary) const override;
0019 
0020     WebVTTOutputFormat();
0021 };
0022 }
0023 
0024 #endif