diff --git a/src/interfaces/iplugincontroller.cpp b/src/interfaces/iplugincontroller.cpp index d8673b3..4475ba0 100644 --- a/src/interfaces/iplugincontroller.cpp +++ b/src/interfaces/iplugincontroller.cpp @@ -1,38 +1,36 @@ /**************************************************************************** ** ** Copyright (C) 2016 by Sandro S. Andrade ** ** This program is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as ** published by the Free Software Foundation; either version 2 of ** the License or (at your option) version 3 or any later version ** accepted by the membership of KDE e.V. (or its successor approved ** by the membership of KDE e.V.), which shall act as a proxy ** defined in Section 14 of version 3 of the license. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #include "iplugincontroller.h" namespace Minuet { - IPluginController::IPluginController(QObject *parent) : QObject(parent) { } IPluginController::~IPluginController() { } } - diff --git a/src/interfaces/iplugincontroller.h b/src/interfaces/iplugincontroller.h index 2ad4a97..981aaec 100644 --- a/src/interfaces/iplugincontroller.h +++ b/src/interfaces/iplugincontroller.h @@ -1,48 +1,47 @@ /**************************************************************************** ** ** Copyright (C) 2016 by Sandro S. Andrade ** ** This program is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as ** published by the Free Software Foundation; either version 2 of ** the License or (at your option) version 3 or any later version ** accepted by the membership of KDE e.V. (or its successor approved ** by the membership of KDE e.V.), which shall act as a proxy ** defined in Section 14 of version 3 of the license. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program. If not, see . ** ****************************************************************************/ #ifndef MINUET_IPLUGINCONTROLLER_H #define MINUET_IPLUGINCONTROLLER_H #include #include namespace Minuet { - class MINUETINTERFACES_EXPORT IPluginController : public QObject { Q_OBJECT public: virtual ~IPluginController() override; - + virtual QString errorString() const = 0; protected: explicit IPluginController(QObject *parent = 0); }; } #endif