Move the plugin examples to subdir of pluginhowto.

This commit is contained in:
con
2010-06-21 16:12:49 +02:00
parent abcb9358c2
commit 08c8ce32e9
87 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#ifndef PROGRESSBAR_PLUGIN_H
#define PROGRESSBAR_PLUGIN_H
#include <extensionsystem/iplugin.h>
class ProgressBarPlugin : public ExtensionSystem::IPlugin
{
Q_OBJECT
public:
ProgressBarPlugin();
~ProgressBarPlugin();
void extensionsInitialized();
bool initialize(const QStringList & arguments, QString* errorString);
void shutdown();
};
#endif // PROGRESSBAR_PLUGIN_H