Krita Source Code Documentation
Loading...
Searching...
No Matches
KisPreExportChecker.h
Go to the documentation of this file.
1/* This file is part of the KDE project
2 * SPDX-FileCopyrightText: 2016 Boudewijn Rempt <boud@valdyas.org>
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6#ifndef KISPREEXPORTCHECKER_H
7#define KISPREEXPORTCHECKER_H
8
9#include <kis_types.h>
10#include "kritaimpex_export.h"
11
12#include "KisExportCheckBase.h"
13
14class KisExportConverterBase;
15
16class KRITAIMPEX_EXPORT KisPreExportChecker
17{
18public:
20
27 bool check(KisImageSP image, QMap<QString, KisExportCheckBase *> filterChecks);
28 QStringList warnings() const;
29 QStringList errors() const;
30
31private:
32
35};
36
37#endif // KISPREEXPORTCHECKER_H