summaryrefslogtreecommitdiffstats
path: root/kbabel/kbabeldict/modules/dbsearchengine2/dbse2_factory.h
blob: ffd6b170fe4f911983d72994e091adfd05a90978 (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
{
	TQ_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