Files
qt-creator/doc/pluginhowto/examples/donothing/donothingplugin.h
2010-07-16 08:35:02 +02:00

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