aboutsummaryrefslogtreecommitdiff
path: root/subprojects/plugin_hostlist/plugin/plugin.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2020-04-23 17:47:39 +0300
committerAqua-sama <aqua@iserlohn-fortress.net>2020-04-23 17:47:39 +0300
commitaa7e8fe1a90fbba289aec9b59a872170a0c593c2 (patch)
treef755844140350029b949a022be74570b3f1b1b70 /subprojects/plugin_hostlist/plugin/plugin.h
parentplugin_hostlist: add fuzzer (diff)
downloadsmolbote-aa7e8fe1a90fbba289aec9b59a872170a0c593c2.tar.xz
move subprojects/plugin_hostlist to plugins/smolblok_hostlist
Diffstat (limited to 'subprojects/plugin_hostlist/plugin/plugin.h')
-rw-r--r--subprojects/plugin_hostlist/plugin/plugin.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/subprojects/plugin_hostlist/plugin/plugin.h b/subprojects/plugin_hostlist/plugin/plugin.h
deleted file mode 100644
index 53b5d36..0000000
--- a/subprojects/plugin_hostlist/plugin/plugin.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * This file is part of smolbote. It's copyrighted by the contributors recorded
- * in the version control history of the file, available from its original
- * location: https://library.iserlohn-fortress.net/aqua/smolbote.git
- *
- * SPDX-License-Identifier: GPL-3.0
- */
-
-#ifndef SMOLBLOK_FILTER_PLUGIN_H
-#define SMOLBLOK_FILTER_PLUGIN_H
-
-#include <smolbote/filterinterface.hpp>
-
-class HostlistFilterPlugin : public QObject, public FilterPlugin
-{
- Q_OBJECT
- Q_PLUGIN_METADATA(IID FilterPluginIid FILE "smolblokHostlistPlugin.json")
- Q_INTERFACES(FilterPlugin)
-
-public:
- ~HostlistFilterPlugin() = default;
-
- FilterList *load(QIODevice &from) const override;
- bool parse(FilterList *list, QIODevice &from) const override;
-};
-
-#endif // SMOLBLOK_FILTER_PLUGIN_H
-