forked from qt-creator/qt-creator
Also, de-Q_OBJECT-ify. Change-Id: I6e527bb36e9f38a702604f9c6c3923e62bf921c9 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
20 lines
441 B
C++
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
|