#pragma once #include "BlockNode.h" struct Paragraph : public BlockNode { std::vector> children; NodeKind getKind() const { return NodeKind::Paragraph; } };