forked from qt-creator/qt-creator
20 lines
392 B
C++
20 lines
392 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);
|
|
ShutdownFlag shutdown();
|
|
};
|
|
|
|
#endif // DONOTHING_PLUGIN_H
|
|
|