forked from qt-creator/qt-creator
23 lines
418 B
C++
23 lines
418 B
C++
#ifndef DONOTHING_PLUGIN_H
|
|
#define DONOTHING_PLUGIN_H
|
|
|
|
#include <extensionsystem/iplugin.h>
|
|
|
|
class DoNothingPlugin : public ExtensionSystem::IPlugin
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DoNothingPlugin();
|
|
~DoNothingPlugin();
|
|
void extensionsInitialized();
|
|
bool initialize(const QStringList & arguments, QString * errorString);
|
|
void shutdown();
|
|
private slots:
|
|
void about();
|
|
|
|
};
|
|
|
|
#endif // DONOTHING_PLUGIN_H
|
|
|