Files
QodeAssist/chat/ChatEditorFactory.hpp
2026-05-15 23:44:43 +02:00

21 lines
419 B
C++

// Copyright (C) 2024-2026 Petr Mironychev
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <coreplugin/editormanager/ieditorfactory.h>
class QQmlEngine;
namespace QodeAssist::Chat {
class SessionFileRegistry;
class ChatEditorFactory : public Core::IEditorFactory
{
public:
ChatEditorFactory(QQmlEngine *engine, SessionFileRegistry *sessionFileRegistry);
};
} // namespace QodeAssist::Chat