2006-04-13 00:11:16 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2006 Aaron Seigo <aseigo@kde.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Library General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation
|
|
|
|
*
|
|
|
|
* 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 Library General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PLASMA_INTERFACE_H
|
|
|
|
#define PLASMA_INTERFACE_H
|
|
|
|
|
2007-04-22 09:35:04 +00:00
|
|
|
#include <QtCore/QString>
|
2006-12-16 23:04:44 +00:00
|
|
|
|
2007-04-01 21:07:41 +00:00
|
|
|
#include <kdemacros.h>
|
2007-02-28 23:35:26 +00:00
|
|
|
|
2006-04-13 00:11:16 +00:00
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
2007-05-19 08:35:35 +00:00
|
|
|
class DataEngine;
|
|
|
|
|
2007-02-28 23:35:26 +00:00
|
|
|
class KDE_EXPORT Interface
|
2006-04-13 00:11:16 +00:00
|
|
|
{
|
|
|
|
public:
|
2007-02-28 23:35:26 +00:00
|
|
|
static Interface* self();
|
2006-04-13 00:11:16 +00:00
|
|
|
|
2007-05-19 08:35:35 +00:00
|
|
|
virtual DataEngine* dataEngine(const QString &name) = 0;
|
|
|
|
virtual DataEngine* loadDataEngine(const QString &name) = 0;
|
|
|
|
virtual void unloadDataEngine(const QString &name) = 0;
|
2006-04-13 00:11:16 +00:00
|
|
|
|
|
|
|
protected:
|
2006-12-16 23:04:44 +00:00
|
|
|
Interface();
|
|
|
|
virtual ~Interface();
|
2007-02-28 23:35:26 +00:00
|
|
|
|
2006-04-13 00:11:16 +00:00
|
|
|
static Interface* m_interface;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // Plasma namespace
|
|
|
|
|
|
|
|
#endif // multiple inclusion guard
|
2006-12-16 23:04:44 +00:00
|
|
|
|