Files
qt-creator/doc/pluginhowto/examples/donothing/donothingplugin.h

20 lines
392 B
C
Raw Normal View History

#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);
2010-07-15 20:28:53 +02:00
ShutdownFlag shutdown();
};
#endif // DONOTHING_PLUGIN_H