blob: 5736c6a6064c3270197ebd31efa6723b0ed8915b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// 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 <QString>
namespace Bazaar::Internal {
class BranchInfo
{
public:
BranchInfo(const QString &branchLoc, bool isBound);
const QString branchLocation;
const bool isBoundToBranch;
};
} // Bazaar::Internal
|