File indexing completed on 2024-12-22 04:15:39
0001 /* 0002 * SPDX-FileCopyrightText: 2014 Dmitry Kazakov <dimula73@gmail.com> 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef __KIS_EXR_LAYERS_SORTER_H 0008 #define __KIS_EXR_LAYERS_SORTER_H 0009 0010 #include "kis_types.h" 0011 #include <QScopedPointer> 0012 0013 class QDomDocument; 0014 0015 0016 class KisExrLayersSorter 0017 { 0018 public: 0019 KisExrLayersSorter(const QDomDocument &extraData, KisImageSP image); 0020 ~KisExrLayersSorter(); 0021 0022 private: 0023 struct Private; 0024 QScopedPointer<Private> m_d; 0025 }; 0026 0027 #endif /* __KIS_EXR_LAYERS_SORTER_H */