forked from qt-creator/qt-creator
Change-Id: I8049f71456b8e8573a2dcfce68a14fb12545865b Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
27 lines
644 B
C++
27 lines
644 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <vcsbase/vcsbaseclientsettings.h>
|
|
|
|
namespace Cvs::Internal {
|
|
|
|
class CvsSettings : public VcsBase::VcsBaseSettings
|
|
{
|
|
public:
|
|
CvsSettings();
|
|
|
|
Utils::StringAspect cvsRoot{this};
|
|
Utils::StringAspect diffOptions{this};
|
|
Utils::BoolAspect diffIgnoreWhiteSpace{this};
|
|
Utils::BoolAspect diffIgnoreBlankLines{this};
|
|
Utils::BoolAspect describeByCommitId{this};
|
|
|
|
QStringList addOptions(const QStringList &args) const;
|
|
};
|
|
|
|
CvsSettings &settings();
|
|
|
|
} // Cvs::Internal
|