diff options
Diffstat (limited to 'kde2/plugins/plppropsFactory.h')
-rw-r--r-- | kde2/plugins/plppropsFactory.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/kde2/plugins/plppropsFactory.h b/kde2/plugins/plppropsFactory.h new file mode 100644 index 0000000..1226560 --- /dev/null +++ b/kde2/plugins/plppropsFactory.h @@ -0,0 +1,19 @@ +#ifndef _PLPPROPSFACTORY_H_ +#define _PLPPROPSFACTORY_H_ + +#include <klibloader.h> + +class plppropsFactory : public KLibFactory { + Q_OBJECT + public: + plppropsFactory(QObject *parent = 0, const char *name = 0); + virtual ~plppropsFactory(); + + virtual QObject* createObject(QObject* parent = 0, const char* name = 0, const char* classname = "QObject", const QStringList &args = QStringList()); + + private: + KInstance *s_global; + +}; + +#endif |