File indexing completed on 2024-05-05 04:41:02

0001 /*
0002     SPDX-FileCopyrightText: 2010 Aleix Pol Gonzalez <aleixpol@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef KDEVPLATFORM_PLUGIN_SVNLOCATIONWIDGET_H
0008 #define KDEVPLATFORM_PLUGIN_SVNLOCATIONWIDGET_H
0009 
0010 #include <vcs/widgets/standardvcslocationwidget.h>
0011 
0012 
0013 class SvnLocationWidget : public KDevelop::StandardVcsLocationWidget
0014 {
0015     Q_OBJECT
0016     public:
0017         explicit SvnLocationWidget(QWidget* parent = nullptr);
0018         KDevelop::VcsLocation location() const override;
0019         bool isCorrect() const override;
0020 };
0021 
0022 #endif // KDEVPLATFORM_PLUGIN_SVNLOCATIONWIDGET_H