kivio
kiviotargettoolfactory.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef KIVIOTARGETTOOLFACTORY_H
00020 #define KIVIOTARGETTOOLFACTORY_H
00021
00022 #include <qstringlist.h>
00023 #include <qobject.h>
00024
00025 #include <klibloader.h>
00026
00027 class KInstance;
00028
00029 class KivioTargetToolFactory : public KLibFactory
00030 {
00031 Q_OBJECT
00032 public:
00033 KivioTargetToolFactory(QObject *parent = 0, const char *name = 0);
00034 ~KivioTargetToolFactory();
00035
00036 virtual QObject* createObject( QObject* parent = 0, const char* name = 0,
00037 const char* classname = "QObject", const QStringList &args = QStringList() );
00038
00039 static KInstance* global();
00040
00041 private:
00042 static KInstance* s_global;
00043 };
00044
00045 #endif
|