summaryrefslogtreecommitdiff
path: root/src/plugins/ios/iossettingspage.cpp
blob: 7a4f306f65968a36eb62e7b60584dfb36d30b189 (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 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "iossettingspage.h"

#include "iosconstants.h"
#include "iossettingswidget.h"
#include "iostr.h"

#include <projectexplorer/projectexplorerconstants.h>

namespace Ios::Internal {

IosSettingsPage::IosSettingsPage()
{
    setId(Constants::IOS_SETTINGS_ID);
    setDisplayName(Tr::tr("iOS"));
    setCategory(ProjectExplorer::Constants::DEVICE_SETTINGS_CATEGORY);
    setWidgetCreator([] { return new IosSettingsWidget; });
}

} // Ios::Internal