diff options
Diffstat (limited to 'kpovmodeler/pmfactory.h')
-rw-r--r-- | kpovmodeler/pmfactory.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/kpovmodeler/pmfactory.h b/kpovmodeler/pmfactory.h new file mode 100644 index 00000000..b44c6bd3 --- /dev/null +++ b/kpovmodeler/pmfactory.h @@ -0,0 +1,48 @@ +//-*-C++-*- +/* +************************************************************************** + description + -------------------- + copyright : (C) 2000-2001 by Andreas Zehender + email : [email protected] +************************************************************************** + +************************************************************************** +* * +* 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 PMFACTORY_H +#define PMFACTORY_H + +#include <kparts/factory.h> + +class KAboutData; +class KInstance; + +class PMFactory : public KParts::Factory +{ + Q_OBJECT +public: + PMFactory( ); + virtual ~PMFactory( ); + + virtual KParts::Part* createPartObject( QWidget* parentWidget, + const char* widgetName, + QObject* parent, const char* name, + const char* classname, + const QStringList& args ); + + static KInstance* instance( ); + static const KAboutData* aboutData( ); +private: + static KInstance* s_instance; + static KAboutData* s_aboutData; +}; + +#endif |