Files
qt-creator/src/plugins/cvs/cvssettings.h
hjk 426a9a7037 Vcs: Register settings aspects more directly
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>
2023-05-30 06:00:35 +00:00

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