summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibMarkdown/Forward.h
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2021-09-10 21:36:29 +0200
committerBrian Gianforcaro <b.gianfo@gmail.com>2021-10-10 15:18:55 -0700
commit24e7196158e4673c90aca5c6bff89319d3427282 (patch)
treefc8ac5f328a16873809344541d4c952a5fd43a43 /Userland/Libraries/LibMarkdown/Forward.h
parentaca01932bd7e83cea4e026e204b43c2849cf936c (diff)
downloadserenity-24e7196158e4673c90aca5c6bff89319d3427282.zip
LibMarkdown: Implement introspection of the document tree
Diffstat (limited to 'Userland/Libraries/LibMarkdown/Forward.h')
-rw-r--r--Userland/Libraries/LibMarkdown/Forward.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/Userland/Libraries/LibMarkdown/Forward.h b/Userland/Libraries/LibMarkdown/Forward.h
new file mode 100644
index 0000000000..4edf3ce6f2
--- /dev/null
+++ b/Userland/Libraries/LibMarkdown/Forward.h
@@ -0,0 +1,26 @@
+/*
+ * Copyright (c) 2021, Ben Wiederhake <BenWiederhake.GitHub@gmx.de>
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+
+#pragma once
+
+namespace Markdown {
+
+class Block;
+class Document;
+class Text;
+
+class BlockQuote;
+class CodeBlock;
+class ContainerBlock;
+class Heading;
+class HoriziontalRule;
+class List;
+class Paragraph;
+class Table;
+
+class Visitor;
+
+}