forked from qt-creator/qt-creator
Change-Id: I14d5fe8f3b8be809276779be95475e620db01789 Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
24 lines
457 B
C++
24 lines
457 B
C++
// Copyright (c) 2018 Artur Shepilko
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <QString>
|
|
#include <QStringList>
|
|
|
|
namespace Fossil {
|
|
namespace Internal {
|
|
|
|
class RevisionInfo
|
|
{
|
|
public:
|
|
const QString id;
|
|
const QString parentId;
|
|
const QStringList mergeParentIds;
|
|
const QString commentMsg;
|
|
const QString committer;
|
|
};
|
|
|
|
} // namespace Internal
|
|
} // namespace Fossil
|