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>
26 lines
637 B
C++
26 lines
637 B
C++
// Copyright (C) 2016 Hugues Delorme
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <vcsbase/vcsbaseclientsettings.h>
|
|
|
|
namespace Bazaar::Internal {
|
|
|
|
class BazaarSettings final : public VcsBase::VcsBaseSettings
|
|
{
|
|
public:
|
|
BazaarSettings();
|
|
|
|
Utils::BoolAspect diffIgnoreWhiteSpace{this};
|
|
Utils::BoolAspect diffIgnoreBlankLines{this};
|
|
Utils::BoolAspect logVerbose{this};
|
|
Utils::BoolAspect logForward{this};
|
|
Utils::BoolAspect logIncludeMerges{this};
|
|
Utils::StringAspect logFormat{this};
|
|
};
|
|
|
|
BazaarSettings &settings();
|
|
|
|
} // Bazaar::Internal
|