aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/bazaar/branchinfo.cpp
blob: 2d1bb4851b7e35f6b3df7e58a25642431ad43c17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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 {
namespace Internal {

BranchInfo::BranchInfo(const QString &branchLoc, bool isBound) : branchLocation(branchLoc),
    isBoundToBranch(isBound)
{ }

} // namespace Internal
} // namespace Bazaar