2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2015-08-14 13:25:31 +02:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2015-08-14 13:25:31 +02:00
|
|
|
|
|
|
|
|
#include <coreplugin/dialogs/ioptionspage.h>
|
2018-08-24 10:56:13 +02:00
|
|
|
|
2015-08-14 13:25:31 +02:00
|
|
|
namespace Core {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2020-02-04 09:02:50 +01:00
|
|
|
class SystemSettings final : public IOptionsPage
|
2015-08-14 13:25:31 +02:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
SystemSettings();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Core
|