Files
qt-creator/src/plugins/autotest/testnavigationwidget.h
hjk 2c56fa8084 Autotest: Hide TestNavigationWidget implementation
Also, de-Q_OBJECT-ify.

Change-Id: I6e527bb36e9f38a702604f9c6c3923e62bf921c9
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
2023-08-07 08:24:07 +00:00

20 lines
441 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/inavigationwidgetfactory.h>
namespace Autotest::Internal {
class TestNavigationWidgetFactory : public Core::INavigationWidgetFactory
{
public:
TestNavigationWidgetFactory();
private:
Core::NavigationView createWidget() override;
};
} // Autotest::Internal