forked from qt-creator/qt-creator
Change-Id: If49e9ccf9426f049bff842b1facbd408d1d54d4e Reviewed-by: Alessandro Portale <alessandro.portale@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
13 lines
343 B
C++
13 lines
343 B
C++
// Copyright (C) 2016 Hugues Delorme
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
#include "branchinfo.h"
|
|
|
|
namespace Bazaar::Internal {
|
|
|
|
BranchInfo::BranchInfo(const QString &branchLoc, bool isBound) : branchLocation(branchLoc),
|
|
isBoundToBranch(isBound)
|
|
{ }
|
|
|
|
} // Bazaar::Internal
|