File indexing completed on 2025-04-27 04:08:16
0001 /* This file is part of the KDE project 0002 * SPDX-FileCopyrightText: 2012 Dan Leinir Turthra Jensen <admin@leinir.dk> 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef LAYERCOMPOSITEDETAILS_H 0008 #define LAYERCOMPOSITEDETAILS_H 0009 0010 #include <QObject> 0011 0012 0013 class LayerCompositeDetails : public QObject 0014 { 0015 Q_OBJECT 0016 public: 0017 explicit LayerCompositeDetails(QObject *parent = nullptr); 0018 ~LayerCompositeDetails() override; 0019 }; 0020 0021 #endif // LAYERCCOMPOSITEDETAILS_H