summaryrefslogtreecommitdiff
path: root/doc/examples/preferencepane/preferencepaneplugin.h
diff options
context:
space:
mode:
authorAbhishek Patil <abhishek.patil@vcreatelogic.com>2010-06-21 15:27:59 +0200
committercon <qtc-committer@nokia.com>2010-06-21 17:32:15 +0200
commitabcb9358c26c240c409df15300507a90aef37f48 (patch)
tree56f03e33746d3c9186b4a8b0f93565d149263c2c /doc/examples/preferencepane/preferencepaneplugin.h
parentcdbe93285bee1d88518d9b002a908392f9c6bafb (diff)
downloadqt-creator-abcb9358c26c240c409df15300507a90aef37f48.tar.gz
Qt Creator Plugin HOWTO documentation first and second cut
Signed-off-by: Abhishek Patil <abhishek.patil@vcreatelogic.com> Merge-request: 145 Reviewed-by: con <qtc-committer@nokia.com>
Diffstat (limited to 'doc/examples/preferencepane/preferencepaneplugin.h')
-rw-r--r--doc/examples/preferencepane/preferencepaneplugin.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/examples/preferencepane/preferencepaneplugin.h b/doc/examples/preferencepane/preferencepaneplugin.h
new file mode 100644
index 0000000000..808cd04b81
--- /dev/null
+++ b/doc/examples/preferencepane/preferencepaneplugin.h
@@ -0,0 +1,18 @@
+#ifndef PREFERENCEPANE_PLUGIN_H
+#define PREFERENCEPANE_PLUGIN_H
+
+#include <extensionsystem/iplugin.h>
+
+class PreferencePanePlugin : public ExtensionSystem::IPlugin
+{
+public:
+ PreferencePanePlugin();
+ ~PreferencePanePlugin();
+
+ void extensionsInitialized();
+ bool initialize(const QStringList & arguments, QString * errorString);
+ void shutdown();
+};
+
+#endif // PREFERENCEPANE_PLUGIN_H
+