aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/bazaar/branchinfo.cpp
blob: 404fa2530930d1a9ae13d7a3e4745fa087f2357b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2016 Hugues Delorme
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only 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