summaryrefslogtreecommitdiff
path: root/doc/examples/wizard/customproject/customprojectplugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'doc/examples/wizard/customproject/customprojectplugin.h')
-rw-r--r--doc/examples/wizard/customproject/customprojectplugin.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/examples/wizard/customproject/customprojectplugin.h b/doc/examples/wizard/customproject/customprojectplugin.h
new file mode 100644
index 0000000000..ea06d193b8
--- /dev/null
+++ b/doc/examples/wizard/customproject/customprojectplugin.h
@@ -0,0 +1,18 @@
+#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
+