2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 Nicolas Arnaud-Cormos
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2010-12-20 10:35:30 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2010-12-20 10:35:30 +01:00
|
|
|
|
|
|
|
|
#include <coreplugin/dialogs/ioptionspage.h>
|
|
|
|
|
|
|
|
|
|
namespace Macros {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2020-01-16 18:18:20 +01:00
|
|
|
class MacroOptionsPage final : public Core::IOptionsPage
|
2010-12-20 10:35:30 +01:00
|
|
|
{
|
|
|
|
|
public:
|
2019-03-20 18:51:16 +01:00
|
|
|
MacroOptionsPage();
|
2010-12-20 10:35:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Macros
|