File indexing completed on 2024-12-22 04:15:05

0001 /*
0002  *  SPDX-FileCopyrightText: 2018 Boudewijn Rempt <boud@valdyas.org>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef DBEXPLORER_H
0008 #define DBEXPLORER_H
0009 
0010 #include <QVariant>
0011 #include <KisActionPlugin.h>
0012 
0013 class KUndo2MagicString;
0014 
0015 class DbExplorer : public KisActionPlugin
0016 {
0017     Q_OBJECT
0018 public:
0019     DbExplorer(QObject *parent, const QVariantList &);
0020     ~DbExplorer() override;
0021 
0022 public Q_SLOTS:
0023 
0024     void slotDbExplorer();
0025 
0026 };
0027 
0028 #endif // DBEXPLORER_H