aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/markdowneditor.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2023-02-20 08:56:33 +0100
committerhjk <hjk@qt.io>2023-02-21 07:17:29 +0000
commitdce702596965735a5bc2bbf3adcf5e1c50f7b55f (patch)
tree6277d0087e6287f3a2ac7ae43381e5907ef597f2 /src/plugins/texteditor/markdowneditor.h
parentefc4a0f1af0fb644cab0055e40ccd0b7d51c43f2 (diff)
MarkdownView: Merge into TextEditor
Make it a bit more compact, too. Change-Id: I448164371c5a1d6969a292feba17caa2826f58c3 Reviewed-by: Tasuku Suzuki <tasuku.suzuki@signal-slot.co.jp> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/texteditor/markdowneditor.h')
-rw-r--r--src/plugins/texteditor/markdowneditor.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/plugins/texteditor/markdowneditor.h b/src/plugins/texteditor/markdowneditor.h
new file mode 100644
index 00000000000..21944657bc4
--- /dev/null
+++ b/src/plugins/texteditor/markdowneditor.h
@@ -0,0 +1,16 @@
+// 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>
+
+namespace TextEditor::Internal {
+
+class MarkdownEditorFactory final : public Core::IEditorFactory
+{
+public:
+ MarkdownEditorFactory();
+};
+
+} // TextEditor::Internal