blob: b146b0213840a984d071cd1b7d16547e2e696d3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef DBSE_FACTORY_H
#define DBSE_FACTORY_H
#include <klibloader.h>
class KInstance;
class KAboutData;
class DbSeFactory : public KLibFactory
{
Q_OBJECT
TQ_OBJECT
public:
DbSeFactory( TQObject *tqparent=0, const char *name=0);
~DbSeFactory();
virtual TQObject *createObject( TQObject *tqparent=0, const char *name=0,
const char *classname=TQOBJECT_OBJECT_NAME_STRING,
const TQStringList &args = TQStringList());
static KInstance *instance();
private:
static KInstance *s_instance;
static KAboutData *s_about;
};
#endif
|