~ubuntu-branches/ubuntu/intrepid/kdesdk/intrepid-updates

« back to all changes in this revision

Viewing changes to kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2008-05-28 10:11:43 UTC
  • mto: This revision was merged to the branch mainline in revision 37.
  • Revision ID: james.westby@ubuntu.com-20080528101143-gzc3styjz1b70zxu
Tags: upstream-4.0.80
ImportĀ upstreamĀ versionĀ 4.0.80

Show diffs side-by-side

added added

removed removed

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