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