File indexing completed on 2024-04-21 04:58:03

0001 /* This file is part of Webarchiver
0002     SPDX-FileCopyrightText: 2001 Andreas Schlapbach <schlpbch@iam.unibe.ch>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef PLUGIN_WEBARCHIVER_H
0008 #define PLUGIN_WEBARCHIVER_H
0009 
0010 #include <konq_kpart_plugin.h>
0011 
0012 class PluginWebArchiver : public KonqParts::Plugin
0013 {
0014     Q_OBJECT
0015 
0016 public:
0017     PluginWebArchiver(QObject *parent, const QVariantList &args);
0018     ~PluginWebArchiver() override = default;
0019 
0020 protected slots:
0021     void slotSaveToArchive();
0022 };
0023 
0024 #endif