Fix no newlines warnings. Patch by Peter Oberndorfer
[kdevelopdvcssupport.git] / plugins / mercurial / hgplugin.cpp
blob3cf701456d7bedefbb2dcd1ea6929c2cb9821445
1 /***************************************************************************
2 * Copyright 2008 Evgeniy Ivanov <powerfox@kde.ru> *
3 * *
4 * This program is free software; you can redistribute it and/or *
5 * modify it under the terms of the GNU General Public License as *
6 * published by the Free Software Foundation; either version 2 of *
7 * the License or (at your option) version 3 or any later version *
8 * accepted by the membership of KDE e.V. (or its successor approved *
9 * by the membership of KDE e.V.), which shall act as a proxy *
10 * defined in Section 14 of version 3 of the license. *
11 * *
12 * This program is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU General Public License *
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
19 ***************************************************************************/
21 #include "hgplugin.h"
23 #include <KPluginFactory>
24 #include <KPluginLoader>
25 #include <kaboutdata.h>
26 #include <klocalizedstring.h>
28 #include <interfaces/icore.h>
30 #include <vcs/dvcs/dvcsjob.h>
32 #include "hgexecutor.h"
34 K_PLUGIN_FACTORY(KDevHgFactory, registerPlugin<HgPlugin>(); )
35 K_EXPORT_PLUGIN(KDevHgFactory(KAboutData("kdevhg","kdevhg", ki18n("Mercurial"), "0.1", ki18n("Support for Mercurial version control systems"), KAboutData::License_GPL)))
37 HgPlugin::HgPlugin( QObject *parent, const QVariantList & )
38 : DistributedVersionControlPlugin(parent, KDevHgFactory::componentData())
40 KDEV_USE_EXTENSION_INTERFACE( KDevelop::IBasicVersionControl )
41 KDEV_USE_EXTENSION_INTERFACE( KDevelop::IDistributedVersionControl )
43 core()->uiController()->addToolView(i18n("Mercurial"), DistributedVersionControlPlugin::d->m_factory);
45 setXMLFile("kdevhg.rc");
47 DistributedVersionControlPlugin::d->m_exec = new HgExecutor(this);
50 HgPlugin::~HgPlugin()
52 delete DistributedVersionControlPlugin::d;
55 // #include "hgplugin.moc"