You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
606 B
28 lines
606 B
#ifndef DBSE2_FACTORY_H
|
|
#define DBSE2_FACTORY_H
|
|
|
|
#include <klibloader.h>
|
|
class KInstance;
|
|
class KAboutData;
|
|
|
|
class DbSe2Factory : public KLibFactory
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
DbSe2Factory( TQObject *tqparent=0, const char *name=0);
|
|
~DbSe2Factory();
|
|
|
|
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
|