File indexing completed on 2024-04-21 03:56:14

0001 /*
0002     SPDX-FileCopyrightText: 2010 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.net>
0003     SPDX-FileContributor: Stephen Kelly <stephen@kdab.com>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef PROXYITEMSELECTIONWIDGET_H
0009 #define PROXYITEMSELECTIONWIDGET_H
0010 
0011 #include <QWidget>
0012 
0013 class ProxyItemSelectionWidget : public QWidget
0014 {
0015     Q_OBJECT
0016 public:
0017     ProxyItemSelectionWidget(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
0018 };
0019 
0020 #endif