1 | /* |
2 | This file is part of the KFileMetaData project |
3 | SPDX-FileCopyrightText: 2016 Varun Joshi <varunj.1011@gmail.com> |
4 | |
5 | SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
6 | */ |
7 | |
8 | #ifndef EXTERNALEXTRACTOR_H |
9 | #define |
10 | |
11 | #include "extractorplugin.h" |
12 | |
13 | namespace KFileMetaData { |
14 | class ; |
15 | class : public ExtractorPlugin |
16 | { |
17 | |
18 | Q_OBJECT |
19 | |
20 | public: |
21 | explicit (QObject* parent = nullptr); |
22 | explicit (const QString& pluginPath); |
23 | () override; |
24 | |
25 | QStringList () const override; |
26 | void (ExtractionResult* result) override; |
27 | |
28 | private: |
29 | std::unique_ptr<ExternalExtractorPrivate> ; |
30 | Q_DECLARE_PRIVATE(ExternalExtractor) |
31 | }; |
32 | } |
33 | |
34 | #endif // EXTERNALEXTRACTOR_H |
35 | |