You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
648 B
C
40 lines
648 B
C
9 years ago
|
#ifndef IPLUGIN_H
|
||
|
#define IPLUGIN_H
|
||
|
|
||
|
#include <QString>
|
||
|
#include <QWidget>
|
||
|
#include <QtPlugin>
|
||
|
|
||
|
#include "service.h"
|
||
|
|
||
|
class IPlugin
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
IPlugin() {
|
||
|
m_ui = NULL;
|
||
|
}
|
||
|
|
||
|
virtual ~IPlugin() { }
|
||
|
virtual QString pluginName() = 0;
|
||
|
virtual QString pluginId() = 0;
|
||
|
virtual void init() = 0;
|
||
|
virtual QWidget *ui() {
|
||
|
return m_ui;
|
||
|
}
|
||
|
template<class T>
|
||
|
Service<T> *service() {
|
||
|
(Service<T>*)m_service;
|
||
|
}
|
||
|
|
||
|
protected:
|
||
|
QWidget *m_ui;
|
||
|
void *m_service;
|
||
|
};
|
||
|
|
||
|
#define PluginInterface_iid "cz.itsolved.prodejna.IPlugin"
|
||
|
|
||
|
Q_DECLARE_INTERFACE(IPlugin, PluginInterface_iid)
|
||
|
|
||
|
#endif // IPLUGIN_H
|