mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-05-30 10:59:30 -04:00
22 lines
459 B
C++
22 lines
459 B
C++
// Copyright (C) 2024-2026 Petr Mironychev
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <utils/aspects.h>
|
|
#include <utils/layoutbuilder.h>
|
|
|
|
namespace QodeAssist::Settings {
|
|
|
|
class McpClientsListAspect : public Utils::BaseAspect
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit McpClientsListAspect(Utils::AspectContainer *container = nullptr);
|
|
|
|
void addToLayoutImpl(Layouting::Layout &parent) override;
|
|
};
|
|
|
|
} // namespace QodeAssist::Settings
|