00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef QEXTEND_IPLUGIN_H
00021 #define QEXTEND_IPLUGIN_H
00022
00023 #include <QObject>
00024 #include <QExtend/Core/qextend_global>
00025
00026 namespace QExtend
00027 {
00028
00029
00031
00032
00034
00042 class QEXTEND_EXPORT IPlugin : public QObject
00043 {
00044 Q_OBJECT
00045
00046 public:
00047 IPlugin();
00048 virtual ~IPlugin() {};
00049 virtual bool initialize(QString* errorString) = 0;
00050 };
00051
00052 }
00053
00054 #endif // QEXTEND_IPLUGIN_H