2020-01-27 17:35:38 +09:00
|
|
|
// Copyright (C) 2023 Tasuku Suzuki
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/editormanager/ieditorfactory.h>
|
|
|
|
|
|
2023-02-20 08:56:33 +01:00
|
|
|
namespace TextEditor::Internal {
|
2020-01-27 17:35:38 +09:00
|
|
|
|
2023-02-20 08:56:33 +01:00
|
|
|
class MarkdownEditorFactory final : public Core::IEditorFactory
|
2020-01-27 17:35:38 +09:00
|
|
|
{
|
|
|
|
|
public:
|
2023-02-20 08:56:33 +01:00
|
|
|
MarkdownEditorFactory();
|
2020-01-27 17:35:38 +09:00
|
|
|
};
|
|
|
|
|
|
2023-02-20 08:56:33 +01:00
|
|
|
} // TextEditor::Internal
|