blob: b2f2dba0b7bbeef71c464394557615d0f6b225fa (
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 DBSE2_FACTORY_H
#define DBSE2_FACTORY_H
#include <klibloader.h>
class TDEInstance;
class TDEAboutData;
class DbSe2Factory : public KLibFactory
{
Q_OBJECT
public:
DbSe2Factory( TQObject *parent=0, const char *name=0);
~DbSe2Factory();
virtual TQObject *createObject( TQObject *parent=0, const char *name=0,
const char *classname="TQObject",
const TQStringList &args = TQStringList());
static TDEInstance *instance();
private:
static TDEInstance *s_instance;
static TDEAboutData *s_about;
};
#endif
|