mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 03:12:53 +00:00
36 lines
1.3 KiB
C
36 lines
1.3 KiB
C
![]() |
/***************************************************************************
|
||
|
* Copyright 2003, 2006 Adam Treat <treat@kde.org> *
|
||
|
* Copyright 2007 Andreas Pakulat <apaku@gmx.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 KDEVPLATFORM_PLUGIN_KDEVKONSOLEVIEWPLUGIN_H
|
||
|
#define KDEVPLATFORM_PLUGIN_KDEVKONSOLEVIEWPLUGIN_H
|
||
|
|
||
|
#include <interfaces/iplugin.h>
|
||
|
#include <QtCore/QVariant>
|
||
|
|
||
|
class KDevKonsoleViewFactory;
|
||
|
class KPluginFactory;
|
||
|
|
||
|
class KDevKonsoleViewPlugin : public KDevelop::IPlugin
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
KDevKonsoleViewPlugin( KPluginFactory*, QObject *parent, const QVariantList & = QVariantList() );
|
||
|
virtual ~KDevKonsoleViewPlugin();
|
||
|
virtual void unload();
|
||
|
KPluginFactory* konsoleFactory() const;
|
||
|
private:
|
||
|
class KDevKonsoleViewFactory *m_factory;
|
||
|
KPluginFactory* m_konsoleFactory;
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|