Files
qt-creator/doc/examples/htmleditor/htmleditorplugin.h
Abhishek Patil abcb9358c2 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>
2010-06-21 17:32:15 +02:00

22 lines
431 B
C++

#ifndef HTMLEDITOR_PLUGIN_H
#define HTMLEDITOR_PLUGIN_H
#include "extensionsystem/iplugin.h"
#include "coreplugin/uniqueidmanager.h"
class HTMLEditorPlugin : public ExtensionSystem::IPlugin
{
Q_OBJECT
public:
HTMLEditorPlugin();
~HTMLEditorPlugin();
void extensionsInitialized();
bool initialize(const QStringList & arguments, QString * errorString);
void shutdown();
};
#endif // HTMLEDITOR_PLUGIN_H