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 WEBVTTINPUTFORMAT_H
0008 #define WEBVTTINPUTFORMAT_H
0009 
0010 #include "formats/inputformat.h"
0011 
0012 namespace SubtitleComposer {
0013 class WebVTTInputFormat : public InputFormat
0014 {
0015     friend class FormatManager;
0016 
0017 protected:
0018     bool parseSubtitles(Subtitle &subtitle, const QString &data) const override;
0019 
0020     WebVTTInputFormat();
0021 };
0022 }
0023 
0024 #endif