forked from qt-creator/qt-creator
19 lines
395 B
C++
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
|
|
|