summaryrefslogtreecommitdiffstats
path: root/kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.h
blob: 6c72c11aac8cc46d0ad1cf23b89c2d2860874a5c (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 TDEInstance;
class TDEAboutData;

class DbSeFactory : public KLibFactory
{
	Q_OBJECT
  
public:
	DbSeFactory( TQObject *parent=0, const char *name=0);
	~DbSeFactory();

	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