Source: sqlguipart/sqlgui_factory.h
|
|
|
|
/***************************************************************************
sqlgui_factory.h - description
-------------------
begin : Mon Apr 29 2002
copyright : (C) 2002 by mb
email : beranek@uni-duesseldorf.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef SQLGUI_FACTORY_H
#define SQLGUI_FACTORY_H
/*
#include
#include
*/
#include "sqlgui_part.h"
#include
typedef KParts::GenericFactory SqlGuiFactory;
K_EXPORT_COMPONENT_FACTORY( libsqlguipart /*library name*/, SqlGuiFactory );
/*
class KInstance;
class KAboutData;
class SqlGuiFactory: public KLibFactory
{
Q_OBJECT
public:
SqlGuiFactory( QObject * parent = 0, const char * name = 0 );
~SqlGuiFactory();
// reimplemented from KLibFactory
virtual QObject * create( QObject * parent = 0, const char * name = 0, const char * classname = "QObject", const QStringList &args = QStringList());
virtual QObject * createObject( QObject * parent = 0, const char * name = 0, const char * classname = "QObject", const QStringList &args = QStringList());
static KInstance * instance();
private:
static KInstance * s_instance;
static KAboutData * s_about;
};
*/
#endif // SQLGUI_FACTORY_H
Generated by: marcus on voyager on Mon Sep 16 15:31:33 2002, using kdoc 2.0a53. |