diff options
| author | Nicolas Arnaud-Cormos <nicolas@kdab.com> | 2012-02-04 17:34:48 +0100 |
|---|---|---|
| committer | Nicolas Arnaud-Cormos <nicolas@kdab.com> | 2012-02-04 17:34:48 +0100 |
| commit | 5e6b3d3a1d10587f4b7ac74e8806aecf06d5ba30 (patch) | |
| tree | 202c3856ac2a1dbc79033d5967ea168be281dc92 /scriptingplugin.h | |
Initialize the Scripting plugin
Change-Id: Iffd7e39046608e58c38da825bcaf7e38706e8e91
Diffstat (limited to 'scriptingplugin.h')
| -rw-r--r-- | scriptingplugin.h | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/scriptingplugin.h b/scriptingplugin.h new file mode 100644 index 0000000..68f416a --- /dev/null +++ b/scriptingplugin.h @@ -0,0 +1,64 @@ +/************************************************************************** +** +** This file is part of Qt Creator +** +** Copyright (C) 2011 Kläralvdalens Datakonsult AB, a KDAB Group company. +** +** Contact: Kläralvdalens Datakonsult AB (info@kdab.com) +** +** +** GNU Lesser General Public License Usage +** +** This file may be used under the terms of the GNU Lesser General Public +** License version 2.1 as published by the Free Software Foundation and +** appearing in the file LICENSE.LGPL included in the packaging of this file. +** Please review the following information to ensure the GNU Lesser General +** Public License version 2.1 requirements will be met: +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** Other Usage +** +** Alternatively, this file may be used in accordance with the terms and +** conditions contained in a signed written agreement between you and Nokia. +** +** If you have questions regarding the use of this file, please contact +** Nokia at info@qt.nokia.com. +** +**************************************************************************/ + +#ifndef SCRIPTING_H +#define SCRIPTING_H + +#include "scripting_global.h" + +#include <extensionsystem/iplugin.h> + +namespace Scripting { +namespace Internal { + +class ScriptManager; + +class ScriptingPlugin : public ExtensionSystem::IPlugin +{ + Q_OBJECT + +public: + ScriptingPlugin(); + ~ScriptingPlugin(); + + bool initialize(const QStringList &arguments, QString *errorString); + void extensionsInitialized(); + ShutdownFlag aboutToShutdown(); + +private: + ScriptManager *m_scriptManager; +}; + +} // namespace Internal +} // namespace Scripting + +#endif // SCRIPTING_H |
