forked from qt-creator/qt-creator
Signed-off-by: Abhishek Patil <abhishek.patil@vcreatelogic.com> Merge-request: 145 Reviewed-by: con <qtc-committer@nokia.com>
22 lines
431 B
C++
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
|
|
|