forked from qt-creator/qt-creator
Change-Id: I657fa72d5b625877dc1deec229f6f5c7c16358fd Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Cristian Adam <cristian.adam@qt.io>
17 lines
380 B
C++
17 lines
380 B
C++
// 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
|
|
|
|
#pragma once
|
|
|
|
#include <coreplugin/dialogs/ioptionspage.h>
|
|
|
|
namespace CMakeProjectManager::Internal {
|
|
|
|
class CMakeSettingsPage final : public Core::IOptionsPage
|
|
{
|
|
public:
|
|
CMakeSettingsPage();
|
|
};
|
|
|
|
} // CMakeProjectManager::Internal
|