| 1 | /* |
|---|---|
| 2 | SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez <aleixpol@blue-systems.com> |
| 3 | |
| 4 | SPDX-License-Identifier: LGPL-2.1-or-later |
| 5 | */ |
| 6 | |
| 7 | #include "pluginbase.h" |
| 8 | |
| 9 | using namespace Purpose; |
| 10 | |
| 11 | PluginBase::PluginBase(QObject *parent) |
| 12 | : QObject(parent) |
| 13 | { |
| 14 | } |
| 15 | |
| 16 | PluginBase::~PluginBase() |
| 17 | { |
| 18 | } |
| 19 | |
| 20 | #include "moc_pluginbase.cpp" |
| 21 |
