mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-05-30 10:59:30 -04:00
22 lines
430 B
C++
22 lines
430 B
C++
// Copyright (C) 2024-2026 Petr Mironychev
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <coreplugin/inavigationwidgetfactory.h>
|
|
#include <QObject>
|
|
|
|
namespace QodeAssist::Chat {
|
|
|
|
class NavigationPanel : public Core::INavigationWidgetFactory
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit NavigationPanel();
|
|
~NavigationPanel();
|
|
|
|
Core::NavigationView createWidget() override;
|
|
};
|
|
|
|
} // namespace QodeAssist::Chat
|