forked from qt-creator/qt-creator
Change-Id: I407b5102e1f2a6647f6fdca01a61dfa422c5d3ee Reviewed-by: Christian Stenger <christian.stenger@qt.io>
17 lines
343 B
C++
17 lines
343 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// 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 Autotest::Internal {
|
|
|
|
class TestSettingsPage : public Core::IOptionsPage
|
|
{
|
|
public:
|
|
TestSettingsPage();
|
|
};
|
|
|
|
} // Autotest::Internal
|