forked from qt-creator/qt-creator
Move towards using aspects and away from IOptionPage's QObject base. Change-Id: I07850a6b8e9fa7d2591efc6f76a23f249dfc164f Reviewed-by: Orgad Shaneh <orgads@gmail.com>
22 lines
496 B
C++
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
|