File indexing completed on 2024-04-28 08:50:25

0001 /* This file is part of the KDE project
0002     SPDX-FileCopyrightText: 2000 David Faure <faure@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only
0005 */
0006 
0007 #ifndef kshellcmdplugin_h
0008 #define kshellcmdplugin_h
0009 
0010 #include <konq_kpart_plugin.h>
0011 
0012 class KShellCmdPlugin : public KonqParts::Plugin
0013 {
0014     Q_OBJECT
0015 public:
0016     KShellCmdPlugin(QObject *parent, const QVariantList &);
0017     ~KShellCmdPlugin() override {}
0018 
0019 public Q_SLOTS:
0020     void slotExecuteShellCommand();
0021 };
0022 
0023 #endif