Files
qt-creator/src/plugins/git/gerrit/gerritoptionspage.h
hjk 72093746ac Git: Use LayoutBuilder in Gerrit options page
Move towards using aspects and away from IOptionPage's QObject
base.

Change-Id: I07850a6b8e9fa7d2591efc6f76a23f249dfc164f
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
2023-05-08 15:06:02 +00:00

22 lines
496 B
C++

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <coreplugin/dialogs/ioptionspage.h>
#include <QSharedPointer>
namespace Gerrit::Internal {
class GerritParameters;
class GerritOptionsPage : public Core::IOptionsPage
{
public:
GerritOptionsPage(const QSharedPointer<GerritParameters> &p,
const std::function<void()> &onChanged);
};
} // Gerrit::Internal