blob: f127d5f35e4ce255ee7e0c54df19fe8f2f0bd3e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (C) 2016 BlackBerry Limited. All rights reserved.
// 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 ProjectExplorer { class ToolChain; }
namespace Qnx::Internal {
class QnxSettingsPage final : public Core::IOptionsPage
{
public:
QnxSettingsPage();
~QnxSettingsPage();
static QList<ProjectExplorer::ToolChain *> autoDetect(
const QList<ProjectExplorer::ToolChain *> &alreadyKnown);
};
} // Qnx::Internal
|