expense-factory.h
00001 #ifndef _KPILOT_EXPENSE_FACTORY_H
00002 #define _KPILOT_EXPENSE_FACTORY_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #include <klibloader.h>
00033
00034 #include "plugin.h"
00035
00036 class KInstance;
00037 class KAboutData;
00038
00039 class ExpenseConduitFactory : public KLibFactory
00040 {
00041 Q_OBJECT
00042
00043 public:
00044 ExpenseConduitFactory(QObject * = 0L,const char * = 0L);
00045 virtual ~ExpenseConduitFactory();
00046
00047 static KAboutData *about() { return fAbout; } ;
00048 static const char *group() { return fGroup; } ;
00049
00050 protected:
00051 virtual QObject* createObject( QObject* parent = 0,
00052 const char* name = 0,
00053 const char* classname = "QObject",
00054 const QStringList &args = QStringList() );
00055 private:
00056 KInstance *fInstance;
00057 static KAboutData *fAbout;
00058 static const char *fGroup;
00059 };
00060
00061 extern "C"
00062 {
00063
00064 void *init_libexpenseconduit();
00065
00066 }
00067
00068 #endif
This file is part of the documentation for kpilot Library Version 3.2.2.