┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views/versioncontrol/kversioncontrolplugin.cpp
blob: f057860d4788c0fe3091d333a0cfe4213d06b2fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * SPDX-FileCopyrightText: 2011 Vishesh Yadav <[email protected]>
 * SPDX-FileCopyrightText: 2011 Peter Penz <[email protected]>
 *
 * SPDX-License-Identifier: LGPL-2.0-only
 */

#include "kversioncontrolplugin.h"

KVersionControlPlugin::KVersionControlPlugin(QObject *parent)
    : QObject(parent)
{
}

KVersionControlPlugin::~KVersionControlPlugin() = default;

QString KVersionControlPlugin::localRepositoryRoot(const QString & /*directory*/) const
{
    return QString();
}

#include "moc_kversioncontrolplugin.cpp"