forked from qt-creator/qt-creator
Change-Id: I4493d781a503dde252ae6ad4d705e378b5b0ed51 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
17 lines
347 B
C++
17 lines
347 B
C++
// Copyright (C) 2016 Nicolas Arnaud-Cormos
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <coreplugin/dialogs/ioptionspage.h>
|
|
|
|
namespace Macros::Internal {
|
|
|
|
class MacroOptionsPage final : public Core::IOptionsPage
|
|
{
|
|
public:
|
|
MacroOptionsPage();
|
|
};
|
|
|
|
} // Macros::Internal
|