summaryrefslogtreecommitdiff
path: root/doc/examples/wizard/customproject/customprojectplugin.h
blob: ea06d193b8c1a135ed607669ad0e31a15f10be8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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