Files
qt-creator/doc/pluginhowto/examples/wizard/customproject/customprojectplugin.h

19 lines
395 B
C++

#ifndef CUSTOMPROJECT_PLUGIN_H
#define CUSTOMPROJECT_PLUGIN_H
#include <extensionsystem/iplugin.h>
class CustomProjectPlugin : public ExtensionSystem::IPlugin
{
public:
CustomProjectPlugin();
~CustomProjectPlugin();
void extensionsInitialized();
bool initialize(const QStringList & arguments, QString * errorString);
void shutdown();
};
#endif // CUSTOMPROJECT_PLUGIN_H