File indexing completed on 2024-04-21 04:00:35

0001 /*
0002     SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-or-later
0005 */
0006 
0007 #include "pluginbase.h"
0008 
0009 using namespace Purpose;
0010 
0011 PluginBase::PluginBase(QObject *parent)
0012     : QObject(parent)
0013 {
0014 }
0015 
0016 PluginBase::~PluginBase()
0017 {
0018 }
0019 
0020 #include "moc_pluginbase.cpp"